public enum QuotationMarkType extends Enum<QuotationMarkType>
| Enum Constant and Description |
|---|
DOUBLE
The DOUBLE indicates there are double quotation marks.
|
NONE
The NONE indicates there are not quotation marks.
|
SINGLE
The SINGLE indicates there are single quotation marks.
|
| Modifier and Type | Method and Description |
|---|---|
static QuotationMarkType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QuotationMarkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuotationMarkType NONE
public static final QuotationMarkType SINGLE
public static final QuotationMarkType DOUBLE
public static QuotationMarkType[] values()
for (QuotationMarkType c : QuotationMarkType.values()) System.out.println(c);
public static QuotationMarkType 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 © 2015 Alpha Ro Group UG (haftungsbeschrÀngt). All rights reserved.