public enum ServiceCapabilityType extends Enum<ServiceCapabilityType>
| Enum Constant and Description |
|---|
ACTION
A special type that defines the action to use.
|
HIERARCHICAL_MULTI_SELECT
A hierarchical set of values (values in values) with the ability to select multiple
values.
|
SINGLE_SELECT
A simple value to be chosen amongst the specified options.
|
TEXT
A simple text value with no option.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static ServiceCapabilityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceCapabilityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceCapabilityType ACTION
public static final ServiceCapabilityType TEXT
public static final ServiceCapabilityType SINGLE_SELECT
public static final ServiceCapabilityType HIERARCHICAL_MULTI_SELECT
public static ServiceCapabilityType[] values()
for (ServiceCapabilityType c : ServiceCapabilityType.values()) System.out.println(c);
public static ServiceCapabilityType 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 getName()
Copyright © 2019 Pivotal Software, Inc.. All rights reserved.