public static enum ConverterBase.ConverterStatus extends java.lang.Enum<ConverterBase.ConverterStatus>
NO_CHANGE
means no conversion
takes place. NO_OUTPUT
means the input of conversion is removed in
the output. MODIFIED
means the conversion modifies the input.Modifier and Type | Method and Description |
---|---|
static ConverterBase.ConverterStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConverterBase.ConverterStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConverterBase.ConverterStatus NO_CHANGE
public static final ConverterBase.ConverterStatus NO_OUTPUT
public static final ConverterBase.ConverterStatus MODIFIED
public static ConverterBase.ConverterStatus[] values()
for (ConverterBase.ConverterStatus c : ConverterBase.ConverterStatus.values()) System.out.println(c);
public static ConverterBase.ConverterStatus 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