public static enum GraphConstants.Markers extends java.lang.Enum<GraphConstants.Markers>
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
convertEnumSetToString(java.util.EnumSet<GraphConstants.Markers> set)
Returns the String representation of the EnumSet of Markers
that is given.
|
static java.util.EnumSet<GraphConstants.Markers> |
convertStringToEnumSet(java.lang.String type)
Returns the EnumSet of Markers that encapsulates the
information in the given String.
|
static GraphConstants.Markers |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GraphConstants.Markers[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphConstants.Markers NONE
public static final GraphConstants.Markers AUTO
public static final GraphConstants.Markers HIGH
public static final GraphConstants.Markers LOW
public static final GraphConstants.Markers FIRST
public static final GraphConstants.Markers LAST
public static GraphConstants.Markers[] values()
for (GraphConstants.Markers c : GraphConstants.Markers.values()) System.out.println(c);
public static GraphConstants.Markers 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 nullpublic static java.util.EnumSet<GraphConstants.Markers> convertStringToEnumSet(java.lang.String type)
type
- the String of Markers to usepublic static java.lang.String convertEnumSetToString(java.util.EnumSet<GraphConstants.Markers> set)
set
- the EnumSet that will be converted to String.