public enum EnumGeneratorStrategy extends Enum<EnumGeneratorStrategy>
| Modifier and Type | Method and Description |
|---|---|
static EnumGeneratorStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumGeneratorStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumGeneratorStrategy DEFAULT
public static final EnumGeneratorStrategy NULL
public static final EnumGeneratorStrategy FIRST
public static final EnumGeneratorStrategy LAST
public static final EnumGeneratorStrategy RANDOM
public static EnumGeneratorStrategy[] values()
for (EnumGeneratorStrategy c : EnumGeneratorStrategy.values()) System.out.println(c);
public static EnumGeneratorStrategy 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 © 2015. All rights reserved.