public static enum ResourceBlock.ResourceBlockState extends Enum<ResourceBlock.ResourceBlockState>
Represents resource block state.
| Enum Constant and Description |
|---|
Cached
Cached state.
|
Normal
Typical state.
|
| Modifier and Type | Method and Description |
|---|---|
static ResourceBlock.ResourceBlockState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResourceBlock.ResourceBlockState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResourceBlock.ResourceBlockState Normal
Typical state.
public static final ResourceBlock.ResourceBlockState Cached
Cached state.
public static ResourceBlock.ResourceBlockState[] values()
for (ResourceBlock.ResourceBlockState c : ResourceBlock.ResourceBlockState.values()) System.out.println(c);
public static ResourceBlock.ResourceBlockState 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 (c) 2008-2025 Aspose Pty Ltd. All Rights Reserved.