public enum BlockQuoteContinuationMarker extends Enum<BlockQuoteContinuationMarker>
| Enum Constant and Description |
|---|
ADD_AS_FIRST |
ADD_COMPACT |
ADD_COMPACT_WITH_SPACE |
ADD_SPACED |
REMOVE |
| Modifier and Type | Method and Description |
|---|---|
static BlockQuoteContinuationMarker |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlockQuoteContinuationMarker[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockQuoteContinuationMarker ADD_AS_FIRST
public static final BlockQuoteContinuationMarker ADD_COMPACT
public static final BlockQuoteContinuationMarker ADD_COMPACT_WITH_SPACE
public static final BlockQuoteContinuationMarker ADD_SPACED
public static final BlockQuoteContinuationMarker REMOVE
public static BlockQuoteContinuationMarker[] values()
for (BlockQuoteContinuationMarker c : BlockQuoteContinuationMarker.values()) System.out.println(c);
public static BlockQuoteContinuationMarker 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 © 2018. All rights reserved.