public enum SuiteStateFlag extends java.lang.Enum<SuiteStateFlag>
Suite
.Enum Constant and Description |
---|
SSF_AVAILABLE
Available.
|
SSF_ENABLED
Enabled.
|
SSF_HIDDEN
Hidden.
|
SSF_PREINSTALLED
Preinstalled.
|
SSF_REMOVE_DENIED
Can't be removed.
|
SSF_SYSTEM
System suite.
|
SSF_UPDATE_DENIED
Can't be updated.
|
Modifier and Type | Method and Description |
---|---|
static SuiteStateFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SuiteStateFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SuiteStateFlag SSF_ENABLED
public static final SuiteStateFlag SSF_HIDDEN
public static final SuiteStateFlag SSF_AVAILABLE
public static final SuiteStateFlag SSF_REMOVE_DENIED
public static final SuiteStateFlag SSF_UPDATE_DENIED
public static final SuiteStateFlag SSF_PREINSTALLED
public static final SuiteStateFlag SSF_SYSTEM
public static SuiteStateFlag[] values()
for (SuiteStateFlag c : SuiteStateFlag.values()) System.out.println(c);
public static SuiteStateFlag 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.