Enum CometTableLayoutRule.RuleIcon
- java.lang.Object
-
- java.lang.Enum<CometTableLayoutRule.RuleIcon>
-
- com.priint.pubserver.comet.entity.table.CometTableLayoutRule.RuleIcon
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CometTableLayoutRule.RuleIcon>
- Enclosing class:
- CometTableLayoutRule
public static enum CometTableLayoutRule.RuleIcon extends java.lang.Enum<CometTableLayoutRule.RuleIcon>
The Enum RuleIcon.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CALCULATEThe calculate.DIMENSIONThe dimension.FILLCOLORThe fillcolor.INSERTThe insert.MERGEThe merge.MESSAGEThe message.SAVEThe save.SCRIPTThe script.SPLITThe split.STROKEThe stroke.TEXTThe text.UNKNOWNThe unknown.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetIconId()Gets the icon id.static CometTableLayoutRule.RuleIconvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CometTableLayoutRule.RuleIcon[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final CometTableLayoutRule.RuleIcon UNKNOWN
The unknown.
-
SCRIPT
public static final CometTableLayoutRule.RuleIcon SCRIPT
The script.
-
STROKE
public static final CometTableLayoutRule.RuleIcon STROKE
The stroke.
-
FILLCOLOR
public static final CometTableLayoutRule.RuleIcon FILLCOLOR
The fillcolor.
-
TEXT
public static final CometTableLayoutRule.RuleIcon TEXT
The text.
-
DIMENSION
public static final CometTableLayoutRule.RuleIcon DIMENSION
The dimension.
-
SPLIT
public static final CometTableLayoutRule.RuleIcon SPLIT
The split.
-
MERGE
public static final CometTableLayoutRule.RuleIcon MERGE
The merge.
-
INSERT
public static final CometTableLayoutRule.RuleIcon INSERT
The insert.
-
CALCULATE
public static final CometTableLayoutRule.RuleIcon CALCULATE
The calculate.
-
MESSAGE
public static final CometTableLayoutRule.RuleIcon MESSAGE
The message.
-
SAVE
public static final CometTableLayoutRule.RuleIcon SAVE
The save.
-
-
Method Detail
-
values
public static CometTableLayoutRule.RuleIcon[] 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 (CometTableLayoutRule.RuleIcon c : CometTableLayoutRule.RuleIcon.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CometTableLayoutRule.RuleIcon 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
-
getIconId
public int getIconId()
Gets the icon id.- Returns:
- the icon id
-
-