public static enum FqnPattern.Type extends Enum<FqnPattern.Type>
| Enum Constant and Description |
|---|
EXACT_MATCH
The pattern define an exact match.
|
PARTIAL |
| Modifier and Type | Method and Description |
|---|---|
static FqnPattern.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FqnPattern.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FqnPattern.Type EXACT_MATCH
public static final FqnPattern.Type PARTIAL
public static FqnPattern.Type[] values()
for (FqnPattern.Type c : FqnPattern.Type.values()) System.out.println(c);
public static FqnPattern.Type 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 © 2015. All rights reserved.