public enum ActiveState extends java.lang.Enum<ActiveState>
Enum Constant and Description |
---|
ACTIVE
Indicates that an area is being activated by the user.
|
FOCUS
Indicates that the area has focus.
|
HOVER
Indicates that an area has been designated byt not activated by the
user.
|
LINK
Indicates that there is a basic-link descendant, and that it has not
been visited.
|
VISITED
Indicates that there is a basic-link descendant, and that it has been
visited.
|
Modifier and Type | Method and Description |
---|---|
static ActiveState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ActiveState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActiveState LINK
public static final ActiveState VISITED
public static final ActiveState ACTIVE
public static final ActiveState HOVER
public static final ActiveState FOCUS
public static ActiveState[] values()
for (ActiveState c : ActiveState.values()) System.out.println(c);
public static ActiveState 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 nullThis documentation was created 2017-01-24 at 21:26 GMT by The aXSL Group and may be freely copied. See license for details.