Package com.nomagic.uaf.report
Enum ReportProfile.ImageFormatEnum
- java.lang.Object
-
- java.lang.Enum<ReportProfile.ImageFormatEnum>
-
- com.nomagic.uaf.report.ReportProfile.ImageFormatEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ReportProfile.ImageFormatEnum>
- Enclosing class:
- ReportProfile
public static enum ReportProfile.ImageFormatEnum extends java.lang.Enum<ReportProfile.ImageFormatEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description JOINT_PHOTOGRAPHIC_EXPERTS_GROUP__STAR_JPG_
PORTABLE_NETWORK_GRAPHICS__STAR_PNG_
SCALABLE_VECTOR_GRAPHICS__STAR_SVG_
WINDOWS_ENHANCED_METAFILE__STAR_EMF_
WINDOWS_METAFILE__STAR_WMF_
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ReportProfile.ImageFormatEnum
from(java.lang.Object o)
java.lang.String
getText()
static ReportProfile.ImageFormatEnum
toEnum(EnumerationLiteral literal)
static EnumerationLiteral
toEnumerationLiteral(ReportProfile profile, ReportProfile.ImageFormatEnum anEnum)
static ReportProfile.ImageFormatEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ReportProfile.ImageFormatEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JOINT_PHOTOGRAPHIC_EXPERTS_GROUP__STAR_JPG_
public static final ReportProfile.ImageFormatEnum JOINT_PHOTOGRAPHIC_EXPERTS_GROUP__STAR_JPG_
-
PORTABLE_NETWORK_GRAPHICS__STAR_PNG_
public static final ReportProfile.ImageFormatEnum PORTABLE_NETWORK_GRAPHICS__STAR_PNG_
-
SCALABLE_VECTOR_GRAPHICS__STAR_SVG_
public static final ReportProfile.ImageFormatEnum SCALABLE_VECTOR_GRAPHICS__STAR_SVG_
-
WINDOWS_ENHANCED_METAFILE__STAR_EMF_
public static final ReportProfile.ImageFormatEnum WINDOWS_ENHANCED_METAFILE__STAR_EMF_
-
WINDOWS_METAFILE__STAR_WMF_
public static final ReportProfile.ImageFormatEnum WINDOWS_METAFILE__STAR_WMF_
-
-
Method Detail
-
values
public static ReportProfile.ImageFormatEnum[] 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 (ReportProfile.ImageFormatEnum c : ReportProfile.ImageFormatEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReportProfile.ImageFormatEnum 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
-
from
@CheckForNull public static ReportProfile.ImageFormatEnum from(@CheckForNull java.lang.Object o)
-
toEnum
@CheckForNull public static ReportProfile.ImageFormatEnum toEnum(EnumerationLiteral literal)
-
toEnumerationLiteral
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(ReportProfile profile, ReportProfile.ImageFormatEnum anEnum)
-
getText
public java.lang.String getText()
-
-