Class EditorAttributeIdentifier
- java.lang.Object
-
- org.molgenis.metadata.manager.model.EditorAttributeIdentifier
-
public abstract class EditorAttributeIdentifier extends Object
-
-
Constructor Summary
Constructors Constructor Description EditorAttributeIdentifier()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static EditorAttributeIdentifiercreate(String id, String label)static EditorAttributeIdentifiercreate(String id, String label, EditorEntityTypeIdentifier entity)abstract EditorEntityTypeIdentifiergetEntity()abstract StringgetId()abstract StringgetLabel()
-
-
-
Method Detail
-
getId
public abstract String getId()
-
getLabel
@Nullable @CheckForNull public abstract String getLabel()
-
getEntity
@Nullable @CheckForNull public abstract EditorEntityTypeIdentifier getEntity()
-
create
public static EditorAttributeIdentifier create(String id, @Nullable @CheckForNull String label)
-
create
public static EditorAttributeIdentifier create(String id, @Nullable @CheckForNull String label, @Nullable @CheckForNull EditorEntityTypeIdentifier entity)
-
-