public static enum FeatureFormat.Column extends Enum<FeatureFormat.Column>
FeatureFormat.
By default, all columns having at least one non-null value are shown. But a smaller
set of columns can be specified to the FeatureFormat.setAllowedColumns(Set)
method for formatting narrower tables.FeatureFormat.setAllowedColumns(Set)| Enum Constant and Description |
|---|
CARDINALITY
The minimum and maximum occurrences of attribute values.
|
CHARACTERISTICS
Other attributes that describes the attribute.
|
DESIGNATION
Natural language designator for the property.
|
NAME
Name of the property.
|
REMARKS
Whether a property is deprecated, or other remarks.
|
TYPE
Type of property values.
|
VALUE
Property value (for properties) or default value (for property types).
|
| Modifier and Type | Method and Description |
|---|---|
static FeatureFormat.Column |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FeatureFormat.Column[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeatureFormat.Column DESIGNATION
AbstractIdentifiedType.getDesignation().
This column is omitted if no property has a designation.public static final FeatureFormat.Column NAME
AbstractIdentifiedType.getName().public static final FeatureFormat.Column TYPE
DefaultAttributeType.getValueClass() or
DefaultAssociationRole.getValueType().public static final FeatureFormat.Column CARDINALITY
DefaultAttributeType.getMinimumOccurs() and DefaultAttributeType.getMaximumOccurs().public static final FeatureFormat.Column VALUE
AbstractAttribute.getValue(), AbstractAssociation.getValue()
or DefaultAttributeType.getDefaultValue().public static final FeatureFormat.Column CHARACTERISTICS
AbstractAttribute.characteristics().
This column is omitted if no property has characteristics.public static final FeatureFormat.Column REMARKS
public static FeatureFormat.Column[] values()
for (FeatureFormat.Column c : FeatureFormat.Column.values()) System.out.println(c);
public static FeatureFormat.Column valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2010–2017 The Apache Software Foundation. All rights reserved.