Package org.bsc.markdown
Enum MarkdownVisitorHelper.EscapeTextEnum
- java.lang.Object
-
- java.lang.Enum<MarkdownVisitorHelper.EscapeTextEnum>
-
- org.bsc.markdown.MarkdownVisitorHelper.EscapeTextEnum
-
- All Implemented Interfaces:
Serializable
,Comparable<MarkdownVisitorHelper.EscapeTextEnum>
- Enclosing class:
- MarkdownVisitorHelper
public static enum MarkdownVisitorHelper.EscapeTextEnum extends Enum<MarkdownVisitorHelper.EscapeTextEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LeftCurlyBrace
LeftSquareBrace
RightCurlyBrace
RightSquareBrace
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
replaceAll(String value)
static MarkdownVisitorHelper.EscapeTextEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static MarkdownVisitorHelper.EscapeTextEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LeftCurlyBrace
public static final MarkdownVisitorHelper.EscapeTextEnum LeftCurlyBrace
-
RightCurlyBrace
public static final MarkdownVisitorHelper.EscapeTextEnum RightCurlyBrace
-
LeftSquareBrace
public static final MarkdownVisitorHelper.EscapeTextEnum LeftSquareBrace
-
RightSquareBrace
public static final MarkdownVisitorHelper.EscapeTextEnum RightSquareBrace
-
-
Method Detail
-
values
public static MarkdownVisitorHelper.EscapeTextEnum[] 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 (MarkdownVisitorHelper.EscapeTextEnum c : MarkdownVisitorHelper.EscapeTextEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MarkdownVisitorHelper.EscapeTextEnum valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-