public static enum FilePattern.PatternElementKind extends Enum<FilePattern.PatternElementKind>
FilePattern.PatternElement
.Enum Constant and Description |
---|
SELECTION
Selection.
|
TOKEN
Normal token.
|
VARIABLE
Variable.
|
WILDCARD
Any string.
|
Modifier and Type | Method and Description |
---|---|
String |
getSymbol()
Returns a general symbol of this element kind.
|
static FilePattern.PatternElementKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilePattern.PatternElementKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilePattern.PatternElementKind TOKEN
public static final FilePattern.PatternElementKind VARIABLE
FilePattern.Variable
.public static final FilePattern.PatternElementKind SELECTION
FilePattern.Selection
.public static final FilePattern.PatternElementKind WILDCARD
public static FilePattern.PatternElementKind[] values()
for (FilePattern.PatternElementKind c : FilePattern.PatternElementKind.values()) System.out.println(c);
public static FilePattern.PatternElementKind 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 getSymbol()
Copyright © 2011–2019 Asakusa Framework Team. All rights reserved.