public enum QuoteMode extends java.lang.Enum<QuoteMode>
Modifier and Type | Method | Description |
---|---|---|
abstract QuoteMode |
onChar(char c) |
|
static QuoteMode |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static QuoteMode[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuoteMode NONE
public static final QuoteMode SINGLE
public static final QuoteMode DOUBLE
public static final QuoteMode BACKTICK
public static final QuoteMode BRACKET
public static QuoteMode[] values()
for (QuoteMode c : QuoteMode.values()) System.out.println(c);
public static QuoteMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic abstract QuoteMode onChar(char c)
Copyright © 2014–2019 Blazebit. All rights reserved.