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 SummaryEnum Constants Enum Constant Description RESOLUTION_144RESOLUTION_300RESOLUTION_600RESOLUTION_72
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetTranslation()StringgetTranslation(Locale locale)intgetValue()static AbstractExposePanel.ResolutionvalueOf(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_72public static final AbstractExposePanel.Resolution RESOLUTION_72 
 - 
RESOLUTION_144public static final AbstractExposePanel.Resolution RESOLUTION_144 
 - 
RESOLUTION_300public static final AbstractExposePanel.Resolution RESOLUTION_300 
 - 
RESOLUTION_600public static final AbstractExposePanel.Resolution RESOLUTION_600 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 - 
getValuepublic int getValue() 
 - 
getTranslationpublic String getTranslation() - Specified by:
- getTranslationin interface- Translatable
 
 - 
getTranslationpublic String getTranslation(Locale locale) - Specified by:
- getTranslationin interface- Translatable
 
 
- 
 
-