Class EditorEntityTypeParent
- java.lang.Object
-
- org.molgenis.metadata.manager.model.EditorEntityTypeParent
-
public abstract class EditorEntityTypeParent extends Object
-
-
Constructor Summary
Constructors Constructor Description EditorEntityTypeParent()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static EditorEntityTypeParentcreate(String id, String label, List<EditorAttributeIdentifier> attributes, EditorEntityTypeParent parent)abstract List<EditorAttributeIdentifier>getAttributes()abstract StringgetId()abstract StringgetLabel()abstract EditorEntityTypeParentgetParent()
-
-
-
Method Detail
-
getId
public abstract String getId()
-
getLabel
@Nullable @CheckForNull public abstract String getLabel()
-
getAttributes
public abstract List<EditorAttributeIdentifier> getAttributes()
-
getParent
@Nullable @CheckForNull public abstract EditorEntityTypeParent getParent()
-
create
public static EditorEntityTypeParent create(String id, @Nullable @CheckForNull String label, List<EditorAttributeIdentifier> attributes, @Nullable @CheckForNull EditorEntityTypeParent parent)
-
-