public interface BasicAttributeI
extends java.lang.Comparable<java.lang.Object>
AttributeI
that contains only as much information as is needed
to generate method / field declarations for an attribute.Modifier and Type | Method and Description |
---|---|
default java.lang.Class<?> |
getClazz()
Returns the
Class object representing the type of this attribute or the related entity. |
java.lang.String |
getComment() |
java.lang.String |
getContainingElementName() |
java.lang.String |
getContainingElementPackage() |
java.lang.String |
getName() |
EntityI |
getRelationEntity() |
java.lang.String |
getRelationType() |
java.lang.String |
getSingular() |
CBOAttributeTypeI |
getType() |
java.lang.String |
getTypeName()
Returns the type information of this attribute.
|
boolean |
hasCustomIterator()
Returns true if this AttributeI is a relation that uses a custom iterator to fetch its members incrementally.
|
default boolean |
isArray() |
boolean |
isManyRelation() |
boolean |
isReadonly()
Returns whether this
AttributeI instance is strictly read-only. |
boolean |
isRelation() |
boolean |
isVirtual() |
java.lang.String getName()
java.lang.String getContainingElementName()
java.lang.String getContainingElementPackage()
java.lang.String getComment()
CBOAttributeTypeI getType()
java.lang.String getTypeName()
For relations, this is either the simple or qualified name of the referenced entity. For scalars, this is the declared type in the schema.
java.lang.String getSingular()
default java.lang.Class<?> getClazz()
Class
object representing the type of this attribute or the related entity.
If this attribute is a relation to another entity, the method returns the Class object of the related entity. Otherwise, it returns the Class object of the attribute's declared type.
boolean isRelation()
boolean isManyRelation()
EntityI getRelationEntity()
java.lang.String getRelationType()
SchemaI.RELATION_TYPE_N_1
,
SchemaI.RELATION_TYPE_1_N
or
SchemaI.RELATION_TYPE_N_M
.
The empty String (or null?) for scalars.default boolean isArray()
boolean hasCustomIterator()
boolean isVirtual()
boolean isReadonly()
AttributeI
instance is strictly read-only.
An attribute that is strictly read-only cannot be modified under any circumstances.
If this method returns true, any attempt to modify the attribute will result in an
exception being thrown.AttributeI
is strictly read-only, false otherwise.Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.