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