public enum ResourceTypeGroup extends Enum<ResourceTypeGroup>
Urn
Enum Constant and Description |
---|
MATCH
The resource represents a sport event of race type
|
OTHER
The non-specific URN type specifier
|
RACE
The resource represents a tournament
|
TOURNAMENT
The resource represents a tournament
|
Modifier and Type | Method and Description |
---|---|
static ResourceTypeGroup |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResourceTypeGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResourceTypeGroup MATCH
public static final ResourceTypeGroup RACE
public static final ResourceTypeGroup TOURNAMENT
public static final ResourceTypeGroup OTHER
public static ResourceTypeGroup[] values()
for (ResourceTypeGroup c : ResourceTypeGroup.values()) System.out.println(c);
public static ResourceTypeGroup 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–2025. All rights reserved.