public enum ListItemType extends Enum<ListItemType>
Specifies how a Feature is displayed in the list view. Possible values are: check (default) - The Feature's visibility is tied to its item's checkbox. radioFolder - When specified for a Container, only one of the Container's items is visible at a time checkOffOnly - When specified for a Container or Network Link, prevents all items from being made visible at once—that is, the user can turn everything in the Container or Network Link off but cannot turn everything on at the same time. This setting is useful for Containers or Network Links containing large amounts of data. checkHideChildren - Use a normal checkbox for visibility but do not display the Container or Network Link's children in the list view. A checkbox allows the user to toggle visibility of the child objects in the viewer.
| Enum Constant and Description |
|---|
CHECK |
CHECK_HIDE_CHILDREN |
CHECK_OFF_ONLY |
RADIO_FOLDER |
| Modifier and Type | Method and Description |
|---|---|
static ListItemType |
fromValue(String v) |
String |
value() |
static ListItemType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListItemType RADIO_FOLDER
public static final ListItemType CHECK
public static final ListItemType CHECK_HIDE_CHILDREN
public static final ListItemType CHECK_OFF_ONLY
public static ListItemType[] values()
for (ListItemType c : ListItemType.values()) System.out.println(c);
public static ListItemType 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 value()
public static ListItemType fromValue(String v)
Copyright © 2014 Micromata GmbH. All rights reserved.