public enum SuiteState extends java.lang.Enum<SuiteState>
Suite
.Enum Constant and Description |
---|
SS_INSTALLED
Installed.
|
SS_INSTALLING
About to be installed.
|
SS_REMOVED
Removed.
|
Modifier and Type | Method and Description |
---|---|
static SuiteState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SuiteState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SuiteState SS_INSTALLING
public static final SuiteState SS_INSTALLED
public static final SuiteState SS_REMOVED
public static SuiteState[] values()
for (SuiteState c : SuiteState.values()) System.out.println(c);
public static SuiteState 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 nullCopyright (c) 2013, Oracle and/or its affiliates. All Rights Reserved. Use of this specification is subject to license terms.