Package org.wicketstuff.jwicket
Enum CssCursor
- java.lang.Object
-
- java.lang.Enum<CssCursor>
-
- org.wicketstuff.jwicket.CssCursor
-
- All Implemented Interfaces:
Serializable,Comparable<CssCursor>
public enum CssCursor extends Enum<CssCursor>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()StringtoString()static CssCursorvalueOf(String name)Returns the enum constant of this type with the specified name.static CssCursor[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTO
public static final CssCursor AUTO
-
DEFAULT
public static final CssCursor DEFAULT
-
CROSSHARI
public static final CssCursor CROSSHARI
-
POINTER
public static final CssCursor POINTER
-
MOVE
public static final CssCursor MOVE
-
NRESIZE
public static final CssCursor NRESIZE
-
NERESIZE
public static final CssCursor NERESIZE
-
ERESIZE
public static final CssCursor ERESIZE
-
SERESIZE
public static final CssCursor SERESIZE
-
SRESIZE
public static final CssCursor SRESIZE
-
SWRESIZE
public static final CssCursor SWRESIZE
-
WRESIZE
public static final CssCursor WRESIZE
-
NWRESIZE
public static final CssCursor NWRESIZE
-
TEXT
public static final CssCursor TEXT
-
WAIT
public static final CssCursor WAIT
-
HELP
public static final CssCursor HELP
-
-
Method Detail
-
values
public static CssCursor[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CssCursor c : CssCursor.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CssCursor valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getName
public String getName()
-
-