Uses of Class
org.apache.sis.feature.DefaultAttributeType
-
Packages that use DefaultAttributeType Package Description org.apache.sis.feature Defines the structure and content of views of real-world phenomenon.org.apache.sis.feature.builder Helper classes for creatingFeatureType
instances. -
-
Uses of DefaultAttributeType in org.apache.sis.feature
Methods in org.apache.sis.feature that return DefaultAttributeType Modifier and Type Method Description static <V> DefaultAttributeType<V>
Features. cast(DefaultAttributeType<?> type, Class<V> valueClass)
Casts the given attribute type to the given parameterized type.DefaultAttributeType<V>
AbstractAttribute. getType()
Returns information about the attribute (base Java class, domain of values, etc.).Methods in org.apache.sis.feature that return types with arguments of type DefaultAttributeType Modifier and Type Method Description Map<String,DefaultAttributeType<?>>
DefaultAttributeType. characteristics()
Other attribute types that describes this attribute type.Methods in org.apache.sis.feature with parameters of type DefaultAttributeType Modifier and Type Method Description static <V> DefaultAttributeType<V>
Features. cast(DefaultAttributeType<?> type, Class<V> valueClass)
Casts the given attribute type to the given parameterized type.static <V> AbstractAttribute<V>
AbstractAttribute. create(DefaultAttributeType<V> type)
Creates a new attribute of the given type initialized to the default value.Constructors in org.apache.sis.feature with parameters of type DefaultAttributeType Constructor Description AbstractAttribute(DefaultAttributeType<V> type)
Creates a new attribute of the given type.DefaultAttributeType(Map<String,?> identification, Class<V> valueClass, int minimumOccurs, int maximumOccurs, V defaultValue, DefaultAttributeType<?>... characterizedBy)
Constructs an attribute type from the given properties. -
Uses of DefaultAttributeType in org.apache.sis.feature.builder
Methods in org.apache.sis.feature.builder that return DefaultAttributeType Modifier and Type Method Description DefaultAttributeType<V>
AttributeTypeBuilder. build()
Builds the attribute type from the information specified to this builder.DefaultAttributeType<V>
CharacteristicTypeBuilder. build()
Builds the characteristic type from the information specified to this builder.Methods in org.apache.sis.feature.builder with parameters of type DefaultAttributeType Modifier and Type Method Description <V> AttributeTypeBuilder<V>
FeatureTypeBuilder. addAttribute(DefaultAttributeType<V> template)
Creates a newAttributeType
builder initialized to the same characteristics than the given template.<C> CharacteristicTypeBuilder<C>
AttributeTypeBuilder. addCharacteristic(DefaultAttributeType<C> template)
Adds another attribute type that describes this attribute type, using an existing one as a template.
-