public static final class UIHttpManagerComponent.Scope extends Object
| Modifier and Type | Field and Description | 
|---|---|
| static UIHttpManagerComponent.Scope | DATAThe navigation pane and workspace are displayed; user will be able
 to navigate to other nodes, datasets, and dataspaces. | 
| static UIHttpManagerComponent.Scope | DATASETThe navigation pane and workspace are displayed; user will only be able
 to navigate to other nodes,
 but will not be able to navigate to other datasets or dataspaces. | 
| static UIHttpManagerComponent.Scope | DATASPACEThe navigation pane and workspace are displayed; user will be able
 to navigate to other nodes and datasets,
 but will not be able to navigate to other dataspaces. | 
| static UIHttpManagerComponent.Scope | FULLAll user interface elements are displayed. | 
| static UIHttpManagerComponent.Scope | NODEOnly the workspace is displayed; user will not be able
 to navigate to any other nodes. | 
| Modifier and Type | Method and Description | 
|---|---|
| String | format() | 
| boolean | isData() | 
| boolean | isDataSet() | 
| boolean | isDataSpace() | 
| boolean | isFull() | 
| boolean | isNode() | 
| static UIHttpManagerComponent.Scope | parse(String formattedScope)Returns the scope that corresponds to the specified string. | 
| String | toString() | 
public static final UIHttpManagerComponent.Scope FULL
 Value is full.
 
public static final UIHttpManagerComponent.Scope DATA
 Value is data.
 
public static final UIHttpManagerComponent.Scope DATASPACE
 Value is dataspace.
 
public static final UIHttpManagerComponent.Scope DATASET
 Value is dataset.
 
public static final UIHttpManagerComponent.Scope NODE
 Value is node.
 
public static UIHttpManagerComponent.Scope parse(String formattedScope)
 The specified string must have been generated by the method format().
 
IllegalArgumentException - if the specified string is incorrect.format()public boolean isFull()
FULLpublic boolean isData()
DATApublic boolean isDataSpace()
DATASPACEpublic boolean isDataSet()
DATASETpublic boolean isNode()
NODEpublic String format()
parse(String)