public enum ChunkConfig extends Enum<ChunkConfig>
| Modifier and Type | Method and Description |
|---|---|
static ChunkConfig |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChunkConfig[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChunkConfig ALWAYS
public static final ChunkConfig NEVER
public static final ChunkConfig AUTO
public static ChunkConfig[] values()
for (ChunkConfig c : ChunkConfig.values()) System.out.println(c);
public static ChunkConfig 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 © 2023 WSO2. All rights reserved.