Package com.bayesserver
Class NodeGroup
- java.lang.Object
-
- com.bayesserver.NodeGroup
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NodeGroup
copy()
Makes a copy of this instance.CustomPropertyCollection
getCustomProperties()
Gets custom properties associated with this instance.String
getDescription()
An optional description for the custom property.String
getName()
Gets the name, which must be unique perNetworkNodeGroupCollection
.NetworkNodeGroupCollection
getParent()
Gets the parent collection, if set, otherwise null.void
setDescription(String value)
An optional description for the custom property.void
setName(String value)
Gets the name, which must be unique perNetworkNodeGroupCollection
.
-
-
-
Method Detail
-
getCustomProperties
public CustomPropertyCollection getCustomProperties()
Gets custom properties associated with this instance. Custom properties allow storage of custom information, which will be saved with the network.
-
copy
public NodeGroup copy()
Makes a copy of this instance.- Returns:
- The copy.
-
getName
public String getName()
Gets the name, which must be unique perNetworkNodeGroupCollection
.
-
setName
public void setName(String value)
Gets the name, which must be unique perNetworkNodeGroupCollection
.
-
getDescription
public String getDescription()
An optional description for the custom property.
-
setDescription
public void setDescription(String value)
An optional description for the custom property.
-
getParent
public NetworkNodeGroupCollection getParent()
Gets the parent collection, if set, otherwise null.
-
-