public enum RedundancySupport extends Enum<RedundancySupport> implements Enumeration
| Modifier and Type | Class and Description |
|---|---|
static class |
RedundancySupport.Builder |
| Enum Constant and Description |
|---|
Cold |
Hot |
HotAndMirrored |
None |
Transparent |
Warm |
| Modifier and Type | Field and Description |
|---|---|
static EnumSet<RedundancySupport> |
ALL |
static EnumSet<RedundancySupport> |
NONE |
static EnumerationSpecification |
SPECIFICATION |
| Modifier and Type | Method and Description |
|---|---|
static RedundancySupport.Builder |
builder() |
static UnsignedInteger |
getMask(Collection<RedundancySupport> list) |
static UnsignedInteger |
getMask(RedundancySupport... list) |
static EnumSet<RedundancySupport> |
getSet(int mask) |
static EnumSet<RedundancySupport> |
getSet(UnsignedInteger mask) |
int |
getValue()
Return the integer value of this enumeration value.
|
EnumerationSpecification |
specification()
Returns the specification of the
Enumeration. |
RedundancySupport.Builder |
toBuilder()
Returns a builder which can be used to make other instances of the
Enumeration. |
static RedundancySupport |
valueOf(int value) |
static RedundancySupport[] |
valueOf(int[] value) |
static RedundancySupport |
valueOf(Integer value) |
static RedundancySupport[] |
valueOf(Integer[] value) |
static RedundancySupport |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RedundancySupport |
valueOf(UnsignedInteger value) |
static RedundancySupport[] |
valueOf(UnsignedInteger[] value) |
static RedundancySupport[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfgetDescription, getValueAsStringpublic static final RedundancySupport None
public static final RedundancySupport Cold
public static final RedundancySupport Warm
public static final RedundancySupport Hot
public static final RedundancySupport Transparent
public static final RedundancySupport HotAndMirrored
public static final EnumerationSpecification SPECIFICATION
public static final EnumSet<RedundancySupport> NONE
public static final EnumSet<RedundancySupport> ALL
public static RedundancySupport[] values()
for (RedundancySupport c : RedundancySupport.values()) System.out.println(c);
public static RedundancySupport 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 nullpublic EnumerationSpecification specification()
EnumerationEnumeration.specification in interface Enumerationpublic static RedundancySupport valueOf(int value)
public static RedundancySupport valueOf(Integer value)
public static RedundancySupport valueOf(UnsignedInteger value)
public static RedundancySupport[] valueOf(int[] value)
public static RedundancySupport[] valueOf(Integer[] value)
public static RedundancySupport[] valueOf(UnsignedInteger[] value)
public static UnsignedInteger getMask(RedundancySupport... list)
public static UnsignedInteger getMask(Collection<RedundancySupport> list)
public static EnumSet<RedundancySupport> getSet(UnsignedInteger mask)
public static EnumSet<RedundancySupport> getSet(int mask)
public int getValue()
EnumerationgetValue in interface Enumerationpublic static RedundancySupport.Builder builder()
public RedundancySupport.Builder toBuilder()
EnumerationEnumeration.toBuilder in interface EnumerationCopyright © 2026. All rights reserved.