public static enum AstPropertyDefinition.PropertyKind extends Enum<AstPropertyDefinition.PropertyKind>
Enum Constant and Description |
---|
INVALID
An invalid definition.
|
NORMAL
A normal property definition.
|
REFERENCE
A property reference definition.
|
Modifier and Type | Method and Description |
---|---|
static AstPropertyDefinition.PropertyKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AstPropertyDefinition.PropertyKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AstPropertyDefinition.PropertyKind NORMAL
public static final AstPropertyDefinition.PropertyKind REFERENCE
public static final AstPropertyDefinition.PropertyKind INVALID
public static AstPropertyDefinition.PropertyKind[] values()
for (AstPropertyDefinition.PropertyKind c : AstPropertyDefinition.PropertyKind.values()) System.out.println(c);
public static AstPropertyDefinition.PropertyKind 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 © 2011–2019 Asakusa Framework Team. All rights reserved.