Enum MediaModelMother.MediaTemplate
- java.lang.Object
-
- java.lang.Enum<MediaModelMother.MediaTemplate>
-
- de.hybris.platform.cmsfacades.util.models.MediaModelMother.MediaTemplate
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MediaModelMother.MediaTemplate>
- Enclosing class:
- MediaModelMother
public static enum MediaModelMother.MediaTemplate extends java.lang.Enum<MediaModelMother.MediaTemplate>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getAltText()
java.lang.String
getCode()
java.lang.String
getDescription()
java.lang.String
getFilename()
java.lang.String
getMimetype()
java.lang.String
getUrl()
static MediaModelMother.MediaTemplate
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MediaModelMother.MediaTemplate[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOGO
public static final MediaModelMother.MediaTemplate LOGO
-
THUMBNAIL
public static final MediaModelMother.MediaTemplate THUMBNAIL
-
-
Method Detail
-
values
public static MediaModelMother.MediaTemplate[] 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 (MediaModelMother.MediaTemplate c : MediaModelMother.MediaTemplate.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MediaModelMother.MediaTemplate 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
-
getCode
public java.lang.String getCode()
-
getFilename
public java.lang.String getFilename()
-
getMimetype
public java.lang.String getMimetype()
-
getAltText
public java.lang.String getAltText()
-
getDescription
public java.lang.String getDescription()
-
getUrl
public java.lang.String getUrl()
-
-