public enum CssCursor extends Enum<CssCursor>
Enum Constant and Description |
---|
AUTO |
CROSSHARI |
DEFAULT |
ERESIZE |
HELP |
MOVE |
NERESIZE |
NRESIZE |
NWRESIZE |
POINTER |
SERESIZE |
SRESIZE |
SWRESIZE |
TEXT |
WAIT |
WRESIZE |
Modifier and Type | Method and Description |
---|---|
String |
getName() |
String |
toString() |
static CssCursor |
valueOf(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.
|
public static final CssCursor AUTO
public static final CssCursor DEFAULT
public static final CssCursor CROSSHARI
public static final CssCursor POINTER
public static final CssCursor MOVE
public static final CssCursor NRESIZE
public static final CssCursor NERESIZE
public static final CssCursor ERESIZE
public static final CssCursor SERESIZE
public static final CssCursor SRESIZE
public static final CssCursor SWRESIZE
public static final CssCursor WRESIZE
public static final CssCursor NWRESIZE
public static final CssCursor TEXT
public static final CssCursor WAIT
public static final CssCursor HELP
public static CssCursor[] values()
for (CssCursor c : CssCursor.values()) System.out.println(c);
public static CssCursor 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 getName()
Copyright © 2015. All rights reserved.