public static final class UIHttpManagerComponent.Scope extends Object
Modifier and Type | Field and Description |
---|---|
static UIHttpManagerComponent.Scope |
DATA
The navigation pane and workspace are displayed; user will be able
to navigate to other nodes, datasets, and dataspaces.
|
static UIHttpManagerComponent.Scope |
DATASET
The 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 |
DATASPACE
The 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 |
FULL
All user interface elements are displayed.
|
static UIHttpManagerComponent.Scope |
NODE
Only 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()
FULL
public boolean isData()
DATA
public boolean isDataSpace()
DATASPACE
public boolean isDataSet()
DATASET
public boolean isNode()
NODE
public String format()
parse(String)