Enum AbstractExposePanel.Resolution
- java.lang.Object
-
- java.lang.Enum<AbstractExposePanel.Resolution>
-
- com.openindex.openestate.tool.agency.expose.AbstractExposePanel.Resolution
-
- All Implemented Interfaces:
Translatable
,Serializable
,Comparable<AbstractExposePanel.Resolution>
- Enclosing class:
- AbstractExposePanel<ExposeType extends AbstractExpose>
public static enum AbstractExposePanel.Resolution extends Enum<AbstractExposePanel.Resolution> implements Translatable
-
-
Enum Constant Summary
Enum Constants Enum Constant Description RESOLUTION_144
RESOLUTION_300
RESOLUTION_600
RESOLUTION_72
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getTranslation()
String
getTranslation(Locale locale)
int
getValue()
static AbstractExposePanel.Resolution
valueOf(String name)
Returns the enum constant of this type with the specified name.static AbstractExposePanel.Resolution[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RESOLUTION_72
public static final AbstractExposePanel.Resolution RESOLUTION_72
-
RESOLUTION_144
public static final AbstractExposePanel.Resolution RESOLUTION_144
-
RESOLUTION_300
public static final AbstractExposePanel.Resolution RESOLUTION_300
-
RESOLUTION_600
public static final AbstractExposePanel.Resolution RESOLUTION_600
-
-
Method Detail
-
values
public static AbstractExposePanel.Resolution[] 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 (AbstractExposePanel.Resolution c : AbstractExposePanel.Resolution.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractExposePanel.Resolution valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
public int getValue()
-
getTranslation
public String getTranslation()
- Specified by:
getTranslation
in interfaceTranslatable
-
getTranslation
public String getTranslation(Locale locale)
- Specified by:
getTranslation
in interfaceTranslatable
-
-