public static enum ParameterDescriptor.Scope extends Enum<ParameterDescriptor.Scope>
| Enum Constant and Description |
|---|
GLOBAL
Scope GLOBAL means this parameter should be managed on the global level which is the table item.
|
LOCAL
Scope LOCAL means this parameter should be managed on the item the data provider/resolver belongs
to (axis/cell).
|
| Modifier and Type | Method and Description |
|---|---|
static ParameterDescriptor.Scope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParameterDescriptor.Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterDescriptor.Scope LOCAL
public static final ParameterDescriptor.Scope GLOBAL
public static ParameterDescriptor.Scope[] values()
for (ParameterDescriptor.Scope c : ParameterDescriptor.Scope.values()) System.out.println(c);
public static ParameterDescriptor.Scope 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 nullCopyright © 2017 SAP SE. All Rights Reserved.