Package de.hybris.platform.hac.taglib
Enum MessageBlockTag.BlockType
- java.lang.Object
-
- java.lang.Enum<MessageBlockTag.BlockType>
-
- de.hybris.platform.hac.taglib.MessageBlockTag.BlockType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MessageBlockTag.BlockType>
- Enclosing class:
- MessageBlockTag
protected static enum MessageBlockTag.BlockType extends java.lang.Enum<MessageBlockTag.BlockType>
Types of message block.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MessageBlockTag.BlockTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MessageBlockTag.BlockType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WARNING
public static final MessageBlockTag.BlockType WARNING
-
NOTE
public static final MessageBlockTag.BlockType NOTE
-
TIP
public static final MessageBlockTag.BlockType TIP
-
INFO
public static final MessageBlockTag.BlockType INFO
-
-
Method Detail
-
values
public static MessageBlockTag.BlockType[] 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 (MessageBlockTag.BlockType c : MessageBlockTag.BlockType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MessageBlockTag.BlockType 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
-
-