public static enum Role.RollupPolicy extends Enum<Role.RollupPolicy>
Enum Constant and Description |
---|
FULL
The value of the cell is obtained by rolling up the values of all
children.
|
HIDDEN
The value of the cell is null if any of the children are
inaccessible.
|
PARTIAL
The value of the cell is obtained by rolling up the values of
accessible children.
|
Modifier and Type | Method and Description |
---|---|
static Role.RollupPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Role.RollupPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Role.RollupPolicy HIDDEN
public static final Role.RollupPolicy PARTIAL
public static final Role.RollupPolicy FULL
public static Role.RollupPolicy[] values()
for (Role.RollupPolicy c : Role.RollupPolicy.values()) System.out.println(c);
public static Role.RollupPolicy 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 © 2018 Hitachi Vantara. All rights reserved.