public enum NodeType extends java.lang.Enum<NodeType>
The type of a node.
NodeConfiguration.getNodeType()| Enum Constant and Description |
|---|
COLLECTION
A type of node that contains nodes and/or other collections but no published items.
|
LEAF
A type of node that contains published items only.
|
| Modifier and Type | Method and Description |
|---|---|
static NodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeType LEAF
public static final NodeType COLLECTION
public static NodeType[] values()
for (NodeType c : NodeType.values()) System.out.println(c);
public static NodeType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2014–2019 XMPP.rocks. All rights reserved.