Package com.macrofocus.high_d
Enum HighDSettings.PropertyType
- java.lang.Object
-
- java.lang.Enum<HighDSettings.PropertyType>
-
- com.macrofocus.high_d.HighDSettings.PropertyType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<HighDSettings.PropertyType>
- Enclosing class:
- HighDSettings<Color,Font>
public static enum HighDSettings.PropertyType extends java.lang.Enum<HighDSettings.PropertyType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description allowScrolling
antialiasing
ColorMapping
ColorTheme
geometry
InteractionMode
rendering
showFiltered
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HighDSettings.PropertyType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HighDSettings.PropertyType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
showFiltered
public static final HighDSettings.PropertyType showFiltered
-
antialiasing
public static final HighDSettings.PropertyType antialiasing
-
rendering
public static final HighDSettings.PropertyType rendering
-
ColorTheme
public static final HighDSettings.PropertyType ColorTheme
-
InteractionMode
public static final HighDSettings.PropertyType InteractionMode
-
geometry
public static final HighDSettings.PropertyType geometry
-
allowScrolling
public static final HighDSettings.PropertyType allowScrolling
-
ColorMapping
public static final HighDSettings.PropertyType ColorMapping
-
-
Method Detail
-
values
public static HighDSettings.PropertyType[] 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 (HighDSettings.PropertyType c : HighDSettings.PropertyType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HighDSettings.PropertyType 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
-
-