com.stimulsoft.report.components.enums
Enum StiIconSet
java.lang.Object
java.lang.Enum<StiIconSet>
com.stimulsoft.report.components.enums.StiIconSet
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<StiIconSet>
public enum StiIconSet
- extends java.lang.Enum<StiIconSet>
List of icons for Icon Sets Indicator.
Method Summary |
static StiIconSet |
forValue(int value)
|
int |
getValue()
|
static StiIconSet |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static StiIconSet[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
None
public static final StiIconSet None
Full
public static final StiIconSet Full
ArrowsColored3
public static final StiIconSet ArrowsColored3
ArrowsColored4
public static final StiIconSet ArrowsColored4
ArrowsColored5
public static final StiIconSet ArrowsColored5
ArrowsGray3
public static final StiIconSet ArrowsGray3
ArrowsGray4
public static final StiIconSet ArrowsGray4
ArrowsGray5
public static final StiIconSet ArrowsGray5
Flags3
public static final StiIconSet Flags3
Latin4
public static final StiIconSet Latin4
Quarters5
public static final StiIconSet Quarters5
QuartersGreen5
public static final StiIconSet QuartersGreen5
QuartersRed5
public static final StiIconSet QuartersRed5
Ratings3
public static final StiIconSet Ratings3
Ratings4
public static final StiIconSet Ratings4
Ratings5
public static final StiIconSet Ratings5
RedToBlack4
public static final StiIconSet RedToBlack4
Signs3
public static final StiIconSet Signs3
Squares5
public static final StiIconSet Squares5
Stars3
public static final StiIconSet Stars3
Stars5
public static final StiIconSet Stars5
SymbolsCircled3
public static final StiIconSet SymbolsCircled3
SymbolsUncircled3
public static final StiIconSet SymbolsUncircled3
TrafficLights4
public static final StiIconSet TrafficLights4
TrafficLightsRimmed3
public static final StiIconSet TrafficLightsRimmed3
TrafficLightsUnrimmed3
public static final StiIconSet TrafficLightsUnrimmed3
Triangles3
public static final StiIconSet Triangles3
values
public static StiIconSet[] 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 (StiIconSet c : StiIconSet.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static StiIconSet valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
getValue
public int getValue()
forValue
public static StiIconSet forValue(int value)