public static enum SerdeConfig.SerCreatorMode extends java.lang.Enum<SerdeConfig.SerCreatorMode>
Creator
.Enum Constant and Description |
---|
DELEGATING
Use a single argument as the value.
|
PROPERTIES
From properties.
|
Modifier and Type | Method and Description |
---|---|
static SerdeConfig.SerCreatorMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SerdeConfig.SerCreatorMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SerdeConfig.SerCreatorMode DELEGATING
public static final SerdeConfig.SerCreatorMode PROPERTIES
public static SerdeConfig.SerCreatorMode[] values()
for (SerdeConfig.SerCreatorMode c : SerdeConfig.SerCreatorMode.values()) System.out.println(c);
public static SerdeConfig.SerCreatorMode 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