Package com.jidesoft.plaf.windows
Enum TMSchema.Prop
- java.lang.Object
-
- java.lang.Enum<TMSchema.Prop>
-
- com.jidesoft.plaf.windows.TMSchema.Prop
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TMSchema.Prop>
- Enclosing class:
- TMSchema
public static enum TMSchema.Prop extends java.lang.Enum<TMSchema.Prop>
An enumeration of the possible component attributes and the corresponding value type
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BGTYPE
BORDERCOLOR
BORDERONLY
BORDERSIZE
CAPTIONMARGINS
COLOR
CONTENTMARGINS
FILLCOLOR
FLATMENUS
IMAGECOUNT
NORMALSIZE
PROGRESSCHUNKSIZE
PROGRESSSPACESIZE
SIZE
SIZINGMARGINS
TEXTCOLOR
TEXTSHADOWCOLOR
TEXTSHADOWOFFSET
TEXTSHADOWTYPE
TRANSITIONDURATIONS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getValue()
java.lang.String
toString()
static TMSchema.Prop
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TMSchema.Prop[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COLOR
public static final TMSchema.Prop COLOR
-
SIZE
public static final TMSchema.Prop SIZE
-
FLATMENUS
public static final TMSchema.Prop FLATMENUS
-
BORDERONLY
public static final TMSchema.Prop BORDERONLY
-
IMAGECOUNT
public static final TMSchema.Prop IMAGECOUNT
-
BORDERSIZE
public static final TMSchema.Prop BORDERSIZE
-
PROGRESSCHUNKSIZE
public static final TMSchema.Prop PROGRESSCHUNKSIZE
-
PROGRESSSPACESIZE
public static final TMSchema.Prop PROGRESSSPACESIZE
-
TEXTSHADOWOFFSET
public static final TMSchema.Prop TEXTSHADOWOFFSET
-
NORMALSIZE
public static final TMSchema.Prop NORMALSIZE
-
SIZINGMARGINS
public static final TMSchema.Prop SIZINGMARGINS
-
CONTENTMARGINS
public static final TMSchema.Prop CONTENTMARGINS
-
CAPTIONMARGINS
public static final TMSchema.Prop CAPTIONMARGINS
-
BORDERCOLOR
public static final TMSchema.Prop BORDERCOLOR
-
FILLCOLOR
public static final TMSchema.Prop FILLCOLOR
-
TEXTCOLOR
public static final TMSchema.Prop TEXTCOLOR
-
TEXTSHADOWCOLOR
public static final TMSchema.Prop TEXTSHADOWCOLOR
-
BGTYPE
public static final TMSchema.Prop BGTYPE
-
TEXTSHADOWTYPE
public static final TMSchema.Prop TEXTSHADOWTYPE
-
TRANSITIONDURATIONS
public static final TMSchema.Prop TRANSITIONDURATIONS
-
-
Method Detail
-
values
public static TMSchema.Prop[] 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 (TMSchema.Prop c : TMSchema.Prop.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TMSchema.Prop 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
-
getValue
public int getValue()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<TMSchema.Prop>
-
-