public static class StructuralMetadata.Property
extends java.lang.Object
| Constructor and Description |
|---|
Property(java.lang.String name,
java.lang.Class<?> type)
Constructor of metadata's property
|
Property(java.lang.String name,
java.lang.String displayName,
java.lang.String description,
java.lang.Class<?> type,
boolean normalized,
java.lang.Integer count)
Constructor of metadata's property
|
Property(java.lang.String name,
java.lang.String displayName,
java.lang.String description,
StructuralMetadata.EnumType type,
boolean array,
java.lang.Integer count)
Constructor of metadata's property
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.Integer |
getCount()
Count of the data for fixed-size array.
|
java.lang.String |
getDescription()
The description of the property
|
java.lang.String |
getDisplayName()
The name of the property, used by UI for representation.
|
StructuralMetadata.EnumType |
getEnumType()
The enum type
|
java.lang.String |
getName()
The unique name of the property
|
boolean |
getNormalized()
Is the data normalized.
|
java.lang.Class<?> |
getType()
The data type of the property
|
void |
setCount(java.lang.Integer value)
Count of the data for fixed-size array.
|
void |
setDescription(java.lang.String value)
The description of the property
|
void |
setDisplayName(java.lang.String value)
The name of the property, used by UI for representation.
|
void |
setEnumType(StructuralMetadata.EnumType value)
The enum type
|
void |
setNormalized(boolean value)
Is the data normalized.
|
java.lang.String |
toString()
Gets the string representation of this instance.
|
public Property(java.lang.String name,
java.lang.String displayName,
java.lang.String description,
java.lang.Class<?> type,
boolean normalized,
java.lang.Integer count)
name - The unique name of the propertydisplayName - The name of the property, used by UI for representation.description - The description of the propertytype - Data type of the propertynormalized - Is the data normalizedcount - Count of the data for fixed-size arraypublic Property(java.lang.String name,
java.lang.String displayName,
java.lang.String description,
StructuralMetadata.EnumType type,
boolean array,
java.lang.Integer count)
name - The unique name of the propertydisplayName - The name of the property, used by UI for representation.description - The description of the propertytype - Data type of the propertyarray - Is each property value array or scalarcount - Count of the data for fixed-size arraypublic Property(java.lang.String name,
java.lang.Class<?> type)
name - The unique name of the propertytype - Data type of the propertypublic java.lang.String getName()
public java.lang.String getDisplayName()
public void setDisplayName(java.lang.String value)
value - New valuepublic java.lang.String getDescription()
public void setDescription(java.lang.String value)
value - New valuepublic java.lang.Class<?> getType()
public StructuralMetadata.EnumType getEnumType()
public void setEnumType(StructuralMetadata.EnumType value)
value - New valuepublic boolean getNormalized()
public void setNormalized(boolean value)
value - New valuepublic java.lang.Integer getCount()
public void setCount(java.lang.Integer value)
value - New valuepublic java.lang.String toString()
toString in class java.lang.Object