Enum CometPlaceholder.PlaceholderContentQuoteStyle
- java.lang.Object
-
- java.lang.Enum<CometPlaceholder.PlaceholderContentQuoteStyle>
-
- com.priint.pubserver.comet.entity.placeholder.CometPlaceholder.PlaceholderContentQuoteStyle
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CometPlaceholder.PlaceholderContentQuoteStyle>
- Enclosing class:
- CometPlaceholder
public static enum CometPlaceholder.PlaceholderContentQuoteStyle extends java.lang.Enum<CometPlaceholder.PlaceholderContentQuoteStyle>
The enum Placeholder content quote style.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetPrefix()Gets prefix.static CometPlaceholder.PlaceholderContentQuoteStylevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CometPlaceholder.PlaceholderContentQuoteStyle[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STANDARD
public static final CometPlaceholder.PlaceholderContentQuoteStyle STANDARD
Standard placeholder content quote style.
-
UNQUOTED
public static final CometPlaceholder.PlaceholderContentQuoteStyle UNQUOTED
Unquoted placeholder content quote style.
-
CONTENT
public static final CometPlaceholder.PlaceholderContentQuoteStyle CONTENT
Content placeholder content quote style.
-
-
Method Detail
-
values
public static CometPlaceholder.PlaceholderContentQuoteStyle[] 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 (CometPlaceholder.PlaceholderContentQuoteStyle c : CometPlaceholder.PlaceholderContentQuoteStyle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CometPlaceholder.PlaceholderContentQuoteStyle 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
-
getPrefix
public java.lang.String getPrefix()
Gets prefix.- Returns:
- the prefix
-
-