Interface TypeInformation<T>
-
- Type Parameters:
T- The type of the element.
- All Superinterfaces:
NodeInformation<T>
- All Known Implementing Classes:
ClassInformation,TypeInformation
public interface TypeInformation<T> extends NodeInformation<T>
ExtendsNodeInformationto provide additional type-related information.- Author:
- Luca Frosini (ISTI - CNR)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AccessTypegetAccessType(T t)Returns theAccessTypeof the given element.TgetRoot(AccessType accessType)Returns the root element for a givenAccessType.-
Methods inherited from interface org.gcube.informationsystem.tree.NodeInformation
getIdentifier, getParentIdentifiers
-
-
-
-
Method Detail
-
getAccessType
AccessType getAccessType(T t)
Returns theAccessTypeof the given element.- Parameters:
t- The element.- Returns:
- The access type.
-
getRoot
T getRoot(AccessType accessType)
Returns the root element for a givenAccessType.- Parameters:
accessType- The access type.- Returns:
- The root element.
-
-