public static enum Fetch.Style extends Enum<Fetch.Style>
Modifier and Type | Method and Description |
---|---|
static Fetch.Style |
parse(String name) |
String |
toString() |
static Fetch.Style |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Fetch.Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Fetch.Style JOIN
public static final Fetch.Style SELECT
public static Fetch.Style[] values()
for (Fetch.Style c : Fetch.Style.values()) System.out.println(c);
public static Fetch.Style 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 String toString()
toString
in class Enum<Fetch.Style>
public static Fetch.Style parse(String name)
Copyright © 2001-2013 Red Hat, Inc. All Rights Reserved.