public enum TargetCodeGeneratorLoader extends java.lang.Enum<TargetCodeGeneratorLoader> implements TargetCodeGenerator
Modifier and Type | Method and Description |
---|---|
static TargetCodeGenerator |
get(java.lang.String name)
Do a case insensitive lookup of a target language for code generation.
|
static TargetCodeGeneratorLoader |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TargetCodeGeneratorLoader[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
newInstance
public static final TargetCodeGeneratorLoader JAVA
public static final TargetCodeGeneratorLoader CPP
public static final TargetCodeGeneratorLoader GOLANG
public static TargetCodeGeneratorLoader[] values()
for (TargetCodeGeneratorLoader c : TargetCodeGeneratorLoader.values()) System.out.println(c);
public static TargetCodeGeneratorLoader valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static TargetCodeGenerator get(java.lang.String name)
name
- of the target language to lookup.TargetCodeGenerator
for the given language name.Copyright © 2014-2017 Real Logic Ltd. All Rights Reserved.