Enum Image.ImageSize
- java.lang.Object
-
- java.lang.Enum<Image.ImageSize>
-
- com.linecorp.bot.model.message.flex.component.Image.ImageSize
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Image.ImageSize>
- Enclosing class:
- Image
public static enum Image.ImageSize extends java.lang.Enum<Image.ImageSize>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetPropertyValue()static Image.ImageSizevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Image.ImageSize[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
XXS
public static final Image.ImageSize XXS
-
XS
public static final Image.ImageSize XS
-
SM
public static final Image.ImageSize SM
-
MD
public static final Image.ImageSize MD
-
LG
public static final Image.ImageSize LG
-
XL
public static final Image.ImageSize XL
-
XXL
public static final Image.ImageSize XXL
-
XXXL
public static final Image.ImageSize XXXL
-
XXXXL
public static final Image.ImageSize XXXXL
-
XXXXXL
public static final Image.ImageSize XXXXXL
-
FULL_WIDTH
public static final Image.ImageSize FULL_WIDTH
-
-
Method Detail
-
values
public static Image.ImageSize[] 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 (Image.ImageSize c : Image.ImageSize.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Image.ImageSize 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
-
getPropertyValue
public java.lang.String getPropertyValue()
-
-