@Generated public enum Kind extends Enum<Kind>
Depending on `kind`, different validations and default values will be applied.
The first usage of this value is for the simple cluster form where it sets `kind = CLASSIC_PREVIEW`.
| Enum Constant and Description |
|---|
CLASSIC_PREVIEW |
| Modifier and Type | Method and Description |
|---|---|
static Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Kind CLASSIC_PREVIEW
public static Kind[] values()
for (Kind c : Kind.values()) System.out.println(c);
public static Kind 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.