Class ValueArrayProperty
- java.lang.Object
-
- org.citygml4j.model.gml.base.ArrayAssociation<Value>
-
- org.citygml4j.model.gml.valueObjects.ValueArrayProperty
-
- All Implemented Interfaces:
java.io.Serializable
,Association<Value>
,ModelObject
,Child
,Copyable
,GML
public class ValueArrayProperty extends ArrayAssociation<Value>
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ValueArrayProperty()
ValueArrayProperty(java.util.List<Value> value)
ValueArrayProperty(Value value)
ValueArrayProperty(Value... value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addValue(Value value)
java.lang.Object
copy(CopyBuilder copyBuilder)
java.lang.Object
copyTo(java.lang.Object target, CopyBuilder copyBuilder)
java.lang.Class<Value>
getAssociableClass()
GMLClass
getGMLClass()
java.util.List<Value>
getValue()
boolean
isSetValue()
void
setValue(java.util.List<Value> value)
void
unsetValue()
boolean
unsetValue(Value value)
-
Methods inherited from class org.citygml4j.model.gml.base.ArrayAssociation
addObject, getLocalProperty, getObject, getParent, hasLocalProperty, isSetObject, isSetParent, setLocalProperty, setObject, setParent, unsetLocalProperty, unsetObject, unsetObject, unsetParent
-
-
-
-
Method Detail
-
getGMLClass
public GMLClass getGMLClass()
- Specified by:
getGMLClass
in interfaceGML
- Overrides:
getGMLClass
in classArrayAssociation<Value>
-
getValue
public java.util.List<Value> getValue()
-
isSetValue
public boolean isSetValue()
-
setValue
public void setValue(java.util.List<Value> value)
-
addValue
public void addValue(Value value)
-
unsetValue
public void unsetValue()
-
unsetValue
public boolean unsetValue(Value value)
-
getAssociableClass
public java.lang.Class<Value> getAssociableClass()
-
copyTo
public java.lang.Object copyTo(java.lang.Object target, CopyBuilder copyBuilder)
- Specified by:
copyTo
in interfaceCopyable
- Overrides:
copyTo
in classArrayAssociation<Value>
-
copy
public java.lang.Object copy(CopyBuilder copyBuilder)
-
-