public enum SmiVersion extends java.lang.Enum<SmiVersion>
| Modifier and Type | Field and Description |
|---|---|
static java.util.Set<SmiVersion> |
ALL_SET |
static java.util.Set<SmiVersion> |
V1_SET |
static java.util.Set<SmiVersion> |
V2_SET |
| Modifier and Type | Method and Description |
|---|---|
static SmiVersion |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SmiVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SmiVersion V1
public static final SmiVersion V2
public static final java.util.Set<SmiVersion> V1_SET
public static final java.util.Set<SmiVersion> V2_SET
public static final java.util.Set<SmiVersion> ALL_SET
public static SmiVersion[] values()
for (SmiVersion c : SmiVersion.values()) System.out.println(c);
public static SmiVersion valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null