Enum PdfShortExpose.GalleryMode
- java.lang.Object
-
- java.lang.Enum<PdfShortExpose.GalleryMode>
-
- com.openindex.openestate.tool.agency.expose.PdfShortExpose.GalleryMode
-
- All Implemented Interfaces:
Translatable
,Serializable
,Comparable<PdfShortExpose.GalleryMode>
- Enclosing class:
- PdfShortExpose
public static enum PdfShortExpose.GalleryMode extends Enum<PdfShortExpose.GalleryMode> implements Translatable
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IMAGE_1x1
IMAGE_PLAN_2x1
IMAGES_2x1
IMAGES_2x2
IMAGES_3x1
IMAGES_3x2
NO_GALLERY
PLAN_1x1
PLAN_IMAGE_2x1
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description int
getColumnCount()
int
getRowCount()
String
getTranslation()
String
getTranslation(Locale locale)
static PdfShortExpose.GalleryMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static PdfShortExpose.GalleryMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.String
write()
Deprecated.
-
-
-
Enum Constant Detail
-
IMAGE_1x1
public static final PdfShortExpose.GalleryMode IMAGE_1x1
-
PLAN_1x1
public static final PdfShortExpose.GalleryMode PLAN_1x1
-
IMAGE_PLAN_2x1
public static final PdfShortExpose.GalleryMode IMAGE_PLAN_2x1
-
PLAN_IMAGE_2x1
public static final PdfShortExpose.GalleryMode PLAN_IMAGE_2x1
-
IMAGES_2x1
public static final PdfShortExpose.GalleryMode IMAGES_2x1
-
IMAGES_3x1
public static final PdfShortExpose.GalleryMode IMAGES_3x1
-
IMAGES_2x2
public static final PdfShortExpose.GalleryMode IMAGES_2x2
-
IMAGES_3x2
public static final PdfShortExpose.GalleryMode IMAGES_3x2
-
NO_GALLERY
public static final PdfShortExpose.GalleryMode NO_GALLERY
-
-
Method Detail
-
values
public static PdfShortExpose.GalleryMode[] 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 (PdfShortExpose.GalleryMode c : PdfShortExpose.GalleryMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PdfShortExpose.GalleryMode 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
-
getColumnCount
public int getColumnCount()
-
getRowCount
public int getRowCount()
-
getTranslation
public String getTranslation()
- Specified by:
getTranslation
in interfaceTranslatable
-
getTranslation
public String getTranslation(Locale locale)
- Specified by:
getTranslation
in interfaceTranslatable
-
write
@Deprecated public String write()
Deprecated.
-
-