public enum BlockQuoteMarker extends Enum<BlockQuoteMarker>
| Enum Constant and Description |
|---|
ADD_COMPACT |
ADD_COMPACT_WITH_SPACE |
ADD_SPACED |
AS_IS |
| Modifier and Type | Method and Description |
|---|---|
static BlockQuoteMarker |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlockQuoteMarker[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockQuoteMarker AS_IS
public static final BlockQuoteMarker ADD_COMPACT
public static final BlockQuoteMarker ADD_COMPACT_WITH_SPACE
public static final BlockQuoteMarker ADD_SPACED
public static BlockQuoteMarker[] values()
for (BlockQuoteMarker c : BlockQuoteMarker.values()) System.out.println(c);
public static BlockQuoteMarker valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019. All rights reserved.