Interface EntityType
-
- All Superinterfaces:
Element,EntityElement,IdentifiableElement,Serializable,Type
- All Known Subinterfaces:
FacetType,ResourceType
- All Known Implementing Classes:
EntityTypeImpl,FacetTypeImpl,ResourceTypeImpl
@TypeMetadata(name="EntityType", description="This class provides information for any EntityType", version="1.0.0") @Change(version="1.0.0", description="First Version") public interface EntityType extends Type, EntityElement
- Author:
- Luca Frosini (ISTI - CNR)
-
-
Field Summary
Fields Modifier and Type Field Description static StringNAME-
Fields inherited from interface org.gcube.informationsystem.base.reference.Element
CLASS_PROPERTY, DATETIME_PATTERN, SUPERCLASSES_PROPERTY
-
Fields inherited from interface org.gcube.informationsystem.base.reference.IdentifiableElement
HEADER_PROPERTY
-
Fields inherited from interface org.gcube.informationsystem.types.reference.Type
ABSTRACT_PROPERTY, CHANGELOG_PROPERTY, DESCRIPTION_PROPERTY, NAME_PROPERTY, PROPERTIES_PROPERTY, TYPE_SUPERCLASSES_PROPERTY, VERSION_PROPERTY
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()StringgetName()Set<String>getSuperClasses()booleanisAbstract()-
Methods inherited from interface org.gcube.informationsystem.base.reference.entities.EntityElement
getHeader
-
Methods inherited from interface org.gcube.informationsystem.base.reference.IdentifiableElement
setHeader
-
Methods inherited from interface org.gcube.informationsystem.types.reference.Type
getAccessType, getChangelog, getChangelogWithVersionAsString, getProperties, getVersion, getVersionAsString
-
-
-
-
Field Detail
-
NAME
static final String NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
getDescription
@ISProperty(name="description", readonly=false, mandatory=true, nullable=false) String getDescription()
- Specified by:
getDescriptionin interfaceType
-
isAbstract
@ISProperty(name="abstract", mandatory=true, nullable=false) boolean isAbstract()
- Specified by:
isAbstractin interfaceType
-
getSuperClasses
@ISProperty(name="superClasses", readonly=true, mandatory=true, nullable=false) Set<String> getSuperClasses()
- Specified by:
getSuperClassesin interfaceType
-
-