public enum DataRedundancyType extends Enum<DataRedundancyType>
| Modifier and Type | Method and Description |
|---|---|
static DataRedundancyType |
parse(String dataRedundancyTypeString)
Returns the DataRedundancyType enum corresponding to the given string
|
String |
toString() |
static DataRedundancyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataRedundancyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataRedundancyType LRS
public static final DataRedundancyType ZRS
public static DataRedundancyType[] values()
for (DataRedundancyType c : DataRedundancyType.values()) System.out.println(c);
public static DataRedundancyType 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 String toString()
toString in class Enum<DataRedundancyType>public static DataRedundancyType parse(String dataRedundancyTypeString)
IllegalArgumentException - if the specified dataRedundancyTypeString is not
supported.Copyright © 2021. All Rights Reserved.