public enum TagsCardinality extends Enum<TagsCardinality>
| Enum Constant and Description |
|---|
DEFAULT |
HIGH |
LOW |
NONE |
ORCHESTRATOR |
| Modifier and Type | Method and Description |
|---|---|
static TagsCardinality |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TagsCardinality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TagsCardinality DEFAULT
public static final TagsCardinality NONE
public static final TagsCardinality LOW
public static final TagsCardinality ORCHESTRATOR
public static final TagsCardinality HIGH
public static TagsCardinality[] values()
for (TagsCardinality c : TagsCardinality.values()) System.out.println(c);
public static TagsCardinality 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.