public static enum Attribute.AttributeOccurence extends java.lang.Enum<Attribute.AttributeOccurence>
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static Attribute.AttributeOccurence |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Attribute.AttributeOccurence[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Attribute.AttributeOccurence ANYWHERE
public static final Attribute.AttributeOccurence PRE
public static final Attribute.AttributeOccurence POST
public static final Attribute.AttributeOccurence WRITTEN
public static Attribute.AttributeOccurence[] values()
for (Attribute.AttributeOccurence c : Attribute.AttributeOccurence.values()) System.out.println(c);
public static Attribute.AttributeOccurence valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<Attribute.AttributeOccurence>