public static enum DisplayOptions.SubstituteHandling extends Enum<DisplayOptions.SubstituteHandling>
Enum Constant and Description |
---|
NO_SUBSTITUTE
Returns a null value when no data is available.
|
SUBSTITUTE
Returns a fallback value (e.g., the input code) when no data is available.
|
UNDEFINED
A possible setting for SubstituteHandling.
|
Modifier and Type | Field and Description |
---|---|
static List<DisplayOptions.SubstituteHandling> |
VALUES
Unmodifiable List of all substitute handlings constants.
|
Modifier and Type | Method and Description |
---|---|
static DisplayOptions.SubstituteHandling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DisplayOptions.SubstituteHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisplayOptions.SubstituteHandling UNDEFINED
public static final DisplayOptions.SubstituteHandling SUBSTITUTE
public static final DisplayOptions.SubstituteHandling NO_SUBSTITUTE
public static final List<DisplayOptions.SubstituteHandling> VALUES
values()
.public static DisplayOptions.SubstituteHandling[] values()
for (DisplayOptions.SubstituteHandling c : DisplayOptions.SubstituteHandling.values()) System.out.println(c);
public static DisplayOptions.SubstituteHandling 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 © 2016 Unicode, Inc. and others.