public enum DiscriminatorStrategy extends Enum<DiscriminatorStrategy>
Enum Constant and Description |
---|
CLASS_NAME |
NONE |
UNSPECIFIED |
VALUE_MAP |
Modifier and Type | Method and Description |
---|---|
static DiscriminatorStrategy |
valueOf(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(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 © 2005–1970 Apache Software Foundation. All rights reserved.