public enum EnumConversionMode extends Enum<EnumConversionMode>
Enum Constant and Description |
---|
FOR_IMPORT |
ON_THE_FLY |
Modifier and Type | Method and Description |
---|---|
static EnumConversionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumConversionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumConversionMode ON_THE_FLY
public static final EnumConversionMode FOR_IMPORT
public static EnumConversionMode[] values()
for (EnumConversionMode c : EnumConversionMode.values()) System.out.println(c);
public static EnumConversionMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2007-2012 Luc Peuvrier. All Rights Reserved.