public enum DiscriminatorStrategy extends java.lang.Enum<DiscriminatorStrategy>
Enum Constant and Description |
---|
CLASS_NAME |
NONE |
UNSPECIFIED |
VALUE_MAP |
Modifier and Type | Method and Description |
---|---|
static DiscriminatorStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DiscriminatorStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DiscriminatorStrategy UNSPECIFIED
public static final DiscriminatorStrategy NONE
public static final DiscriminatorStrategy VALUE_MAP
public static final DiscriminatorStrategy CLASS_NAME
public static DiscriminatorStrategy[] values()
for (DiscriminatorStrategy c : DiscriminatorStrategy.values()) System.out.println(c);
public static DiscriminatorStrategy 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 null