public static enum Wildcard.All extends Enum<Wildcard.All> implements Wildcard
Wildcard.All, Wildcard.Annotation, Wildcard.Class, Wildcard.Key, Wildcard.Object, Wildcard.Scope, Wildcard.TypeLiteral| Enum Constant and Description |
|---|
ANY |
| Modifier and Type | Method and Description |
|---|---|
static Wildcard.All |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Wildcard.All[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Wildcard.All ANY
public static Wildcard.All[] values()
for (Wildcard.All c : Wildcard.All.values()) System.out.println(c);
public static Wildcard.All 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 © 2014. All Rights Reserved.