Package alpine.model
Enum Team.FetchGroup
- java.lang.Object
-
- java.lang.Enum<Team.FetchGroup>
-
- alpine.model.Team.FetchGroup
-
- All Implemented Interfaces:
Serializable,Comparable<Team.FetchGroup>
- Enclosing class:
- Team
public static enum Team.FetchGroup extends Enum<Team.FetchGroup>
Provides an enum that defines the JDO fetchgroups this class defines.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Team.FetchGroupvalueOf(String name)Returns the enum constant of this type with the specified name.static Team.FetchGroup[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final Team.FetchGroup ALL
-
-
Method Detail
-
values
public static Team.FetchGroup[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Team.FetchGroup c : Team.FetchGroup.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Team.FetchGroup valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-