Enum PptxFieldTypeEnum
- java.lang.Object
-
- java.lang.Enum<PptxFieldTypeEnum>
-
- net.sf.jasperreports.engine.export.ooxml.type.PptxFieldTypeEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PptxFieldTypeEnum>,NamedEnum
public enum PptxFieldTypeEnum extends java.lang.Enum<PptxFieldTypeEnum> implements NamedEnum
- Author:
- Sanda Zaharia (shertage@users.sourceforge.net)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATETIMEDATETIME1DATETIME10DATETIME11DATETIME12DATETIME13DATETIME2DATETIME3DATETIME4DATETIME5DATETIME6DATETIME7DATETIME8DATETIME9SLIDENUM
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PptxFieldTypeEnumgetByName(java.lang.String name)java.lang.StringgetName()static PptxFieldTypeEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PptxFieldTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SLIDENUM
public static final PptxFieldTypeEnum SLIDENUM
-
DATETIME
public static final PptxFieldTypeEnum DATETIME
-
DATETIME1
public static final PptxFieldTypeEnum DATETIME1
-
DATETIME2
public static final PptxFieldTypeEnum DATETIME2
-
DATETIME3
public static final PptxFieldTypeEnum DATETIME3
-
DATETIME4
public static final PptxFieldTypeEnum DATETIME4
-
DATETIME5
public static final PptxFieldTypeEnum DATETIME5
-
DATETIME6
public static final PptxFieldTypeEnum DATETIME6
-
DATETIME7
public static final PptxFieldTypeEnum DATETIME7
-
DATETIME8
public static final PptxFieldTypeEnum DATETIME8
-
DATETIME9
public static final PptxFieldTypeEnum DATETIME9
-
DATETIME10
public static final PptxFieldTypeEnum DATETIME10
-
DATETIME11
public static final PptxFieldTypeEnum DATETIME11
-
DATETIME12
public static final PptxFieldTypeEnum DATETIME12
-
DATETIME13
public static final PptxFieldTypeEnum DATETIME13
-
-
Method Detail
-
values
public static PptxFieldTypeEnum[] 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 (PptxFieldTypeEnum c : PptxFieldTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PptxFieldTypeEnum 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
-
getByName
public static PptxFieldTypeEnum getByName(java.lang.String name)
-
-