Enum Class IconSetType
Enum Constant Summary
Enum Constants
Specifies 3 symbols (circle).
Specifies 3 traffic lights.
Specifies 3 traffic lights (with border).
Specifies 4 red to black icons.
Specifies 4 traffic lights.
Method Summary
All Methods Static Methods Instance Methods Concrete Methods
int
Returns the enum constant of this class with the specified name.
Returns an array containing the constants of this enum class, in
the order they are declared.
Methods inherited from class java.lang.Enum
clone , compareTo , describeConstable , equals , finalize , getDeclaringClass , hashCode , name , ordinal , toString , valueOf
Enum Constant Details
CustomSet
Specifies custom icons.
Icon3Arrows
Specifies 3 arrows.
Icon3ArrowsGray
Specifies 3 gray arrows.
Icon3Flags
Specifies 3 flags.
Icon3TrafficLights1
Specifies 3 traffic lights.
Icon3TrafficLights2
Specifies 3 traffic lights (with border).
Icon3Signs
Specifies 3 signs.
Icon3Symbols
Specifies 3 symbols (circle).
Icon3Symbols2
Specifies 3 symbols.
Icon4Arrows
Specifies 4 arrows.
Icon4ArrowsGray
Specifies 4 gray arrows.
Icon4RedToBlack
Specifies 4 red to black icons.
Icon4CRV
Specifies 4 CRV icons.
Icon4TrafficLights
Specifies 4 traffic lights.
Icon5Arrows
Specifies 5 arrows.
Icon5ArrowsGray
Specifies 5 gray arrows.
Icon5CRV
Specifies 5 CRV icons.
Icon5Quarters
Specifies 5 quarters.
Icon3Stars
Specifies 3 stars.
Icon3Triangles
Specifies 3 triangles.
Icon5Boxes
Specifies 5 boxes.
Method Details
values
Returns an array containing the constants of this enum class, in
the order they are declared.
Returns:
an array containing the constants of this enum class, in the order they are declared
valueOf
Returns the enum constant of this class with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this class. (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 class has no constant with the specified name
NullPointerException
- if the argument is null
getValue
public int getValue ()