- java.lang.Object
-
- java.lang.Enum<Tile.SkinType>
-
- eu.hansolo.tilesfx.Tile.SkinType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Tile.SkinType>
- Enclosing class:
- Tile
public static enum Tile.SkinType extends java.lang.Enum<Tile.SkinType>
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description java.lang.StringCLASS_NAME
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Tile.SkinTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Tile.SkinType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SMOOTHED_CHART
public static final Tile.SkinType SMOOTHED_CHART
-
BAR_CHART
public static final Tile.SkinType BAR_CHART
-
CLOCK
public static final Tile.SkinType CLOCK
-
GAUGE
public static final Tile.SkinType GAUGE
-
HIGH_LOW
public static final Tile.SkinType HIGH_LOW
-
PERCENTAGE
public static final Tile.SkinType PERCENTAGE
-
PLUS_MINUS
public static final Tile.SkinType PLUS_MINUS
-
SLIDER
public static final Tile.SkinType SLIDER
-
SPARK_LINE
public static final Tile.SkinType SPARK_LINE
-
SWITCH
public static final Tile.SkinType SWITCH
-
WORLDMAP
public static final Tile.SkinType WORLDMAP
-
TIMER_CONTROL
public static final Tile.SkinType TIMER_CONTROL
-
NUMBER
public static final Tile.SkinType NUMBER
-
TEXT
public static final Tile.SkinType TEXT
-
WEATHER
public static final Tile.SkinType WEATHER
-
TIME
public static final Tile.SkinType TIME
-
CUSTOM
public static final Tile.SkinType CUSTOM
-
LEADER_BOARD
public static final Tile.SkinType LEADER_BOARD
-
MAP
public static final Tile.SkinType MAP
-
RADIAL_CHART
public static final Tile.SkinType RADIAL_CHART
-
DONUT_CHART
public static final Tile.SkinType DONUT_CHART
-
CIRCULAR_PROGRESS
public static final Tile.SkinType CIRCULAR_PROGRESS
-
STOCK
public static final Tile.SkinType STOCK
-
GAUGE_SPARK_LINE
public static final Tile.SkinType GAUGE_SPARK_LINE
-
SMOOTH_AREA_CHART
public static final Tile.SkinType SMOOTH_AREA_CHART
-
RADAR_CHART
public static final Tile.SkinType RADAR_CHART
-
COUNTRY
public static final Tile.SkinType COUNTRY
-
EPHEMERIS
public static final Tile.SkinType EPHEMERIS
-
CHARACTER
public static final Tile.SkinType CHARACTER
-
FLIP
public static final Tile.SkinType FLIP
-
SWITCH_SLIDER
public static final Tile.SkinType SWITCH_SLIDER
-
DATE
public static final Tile.SkinType DATE
-
CALENDAR
public static final Tile.SkinType CALENDAR
-
SUNBURST
public static final Tile.SkinType SUNBURST
-
MATRIX
public static final Tile.SkinType MATRIX
-
RADIAL_PERCENTAGE
public static final Tile.SkinType RADIAL_PERCENTAGE
-
STATUS
public static final Tile.SkinType STATUS
-
BAR_GAUGE
public static final Tile.SkinType BAR_GAUGE
-
IMAGE
public static final Tile.SkinType IMAGE
-
TIMELINE
public static final Tile.SkinType TIMELINE
-
CLUSTER_MONITOR
public static final Tile.SkinType CLUSTER_MONITOR
-
-
Method Detail
-
values
public static Tile.SkinType[] 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 (Tile.SkinType c : Tile.SkinType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Tile.SkinType 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 namejava.lang.NullPointerException- if the argument is null
-
-