Enum ReportProfile.ImageFormatEnum
- java.lang.Object
-
- java.lang.Enum<ReportProfile.ImageFormatEnum>
-
- com.nomagic.magicdraw.magicreport.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
-
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__STARDOTJPG_
public static final ReportProfile.ImageFormatEnum JOINT_PHOTOGRAPHIC_EXPERTS_GROUP__STARDOTJPG_
-
PORTABLE_NETWORK_GRAPHICS__STARDOTPNG_
public static final ReportProfile.ImageFormatEnum PORTABLE_NETWORK_GRAPHICS__STARDOTPNG_
-
SCALABLE_VECTOR_GRAPHICS__STARDOTSVG_
public static final ReportProfile.ImageFormatEnum SCALABLE_VECTOR_GRAPHICS__STARDOTSVG_
-
WINDOWS_ENHANCED_METAFILE__STARDOTEMF_
public static final ReportProfile.ImageFormatEnum WINDOWS_ENHANCED_METAFILE__STARDOTEMF_
-
WINDOWS_METAFILE__STARDOTWMF_
public static final ReportProfile.ImageFormatEnum WINDOWS_METAFILE__STARDOTWMF_
-
-
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
-
getText
public java.lang.String getText()
-
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)
-
-