public static enum SparqlQuery.QueryForm extends Enum<SparqlQuery.QueryForm>
| Modifier and Type | Method and Description |
|---|---|
static SparqlQuery.QueryForm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SparqlQuery.QueryForm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SparqlQuery.QueryForm ASK
public static final SparqlQuery.QueryForm CONSTRUCT
public static final SparqlQuery.QueryForm DESCRIBE
public static final SparqlQuery.QueryForm SELECT
public static SparqlQuery.QueryForm[] values()
for (SparqlQuery.QueryForm c : SparqlQuery.QueryForm.values()) System.out.println(c);
public static SparqlQuery.QueryForm 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 © 2016. All Rights Reserved.