public static enum Resource.ResourceType extends Enum<Resource.ResourceType>
| Modifier and Type | Method and Description |
|---|---|
static Resource.ResourceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Resource.ResourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Resource.ResourceType OBJECT
public static final Resource.ResourceType FILE
public static final Resource.ResourceType TABULAR
public static final Resource.ResourceType MAP
public static final Resource.ResourceType IMAGE
public static Resource.ResourceType[] values()
for (Resource.ResourceType c : Resource.ResourceType.values()) System.out.println(c);
public static Resource.ResourceType 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 © 2021. All Rights Reserved.