public static enum SampleClause.SampleKeyword extends Enum<SampleClause.SampleKeyword>
| Enum Constant and Description |
|---|
SAMPLE |
TABLESAMPLE |
| Modifier and Type | Method and Description |
|---|---|
static SampleClause.SampleKeyword |
from(String sampleKeyword) |
static SampleClause.SampleKeyword |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SampleClause.SampleKeyword[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SampleClause.SampleKeyword SAMPLE
public static final SampleClause.SampleKeyword TABLESAMPLE
public static SampleClause.SampleKeyword[] values()
for (SampleClause.SampleKeyword c : SampleClause.SampleKeyword.values()) System.out.println(c);
public static SampleClause.SampleKeyword 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 nullpublic static SampleClause.SampleKeyword from(String sampleKeyword)
Copyright © 2004–2023 JSQLParser. All rights reserved.