public enum Cloudtype extends Enum<Cloudtype>
| Enum Constant and Description |
|---|
COLUMNS1 |
COLUMNS2 |
COLUMNS3 |
LIST |
SPHERE |
SPREAD |
| Modifier and Type | Method and Description |
|---|---|
static Cloudtype |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Cloudtype[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Cloudtype SPHERE
public static final Cloudtype SPREAD
public static final Cloudtype LIST
public static final Cloudtype COLUMNS1
public static final Cloudtype COLUMNS2
public static final Cloudtype COLUMNS3
public static Cloudtype[] values()
for (Cloudtype c : Cloudtype.values()) System.out.println(c);
public static Cloudtype 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 © 2025. All rights reserved.