public enum ListCAV extends Enum<ListCAV>
This is used to identify a Variance TYPE.
Used in Variance
| Enum Constant and Description |
|---|
ADDITIONAL
Addition.
|
DIFFERENT
Modification.
|
| Modifier and Type | Method and Description |
|---|---|
static ListCAV |
fromValue(String v) |
String |
value() |
static ListCAV |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListCAV[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListCAV ADDITIONAL
public static final ListCAV DIFFERENT
public static ListCAV[] values()
for (ListCAV c : ListCAV.values()) System.out.println(c);
public static ListCAV 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 value()
Copyright © 2016 OpenSSRF.org. All rights reserved.