public static enum Wildcard.ProcessContents extends Enum<Wildcard.ProcessContents>
Enum Constant and Description |
---|
LAX |
SKIP |
STRICT |
UNSPECIFIED |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Wildcard.ProcessContents |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Wildcard.ProcessContents[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Wildcard.ProcessContents UNSPECIFIED
public static final Wildcard.ProcessContents STRICT
public static final Wildcard.ProcessContents LAX
public static final Wildcard.ProcessContents SKIP
public static Wildcard.ProcessContents[] values()
for (Wildcard.ProcessContents c : Wildcard.ProcessContents.values()) System.out.println(c);
public static Wildcard.ProcessContents 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 nullpublic String toString()
toString
in class Enum<Wildcard.ProcessContents>