Class EditorAttributeIdentifier
- java.lang.Object
-
- org.molgenis.metadata.manager.model.EditorAttributeIdentifier
-
public abstract class EditorAttributeIdentifier extends java.lang.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(java.lang.String id, java.lang.String label)static EditorAttributeIdentifiercreate(java.lang.String id, java.lang.String label, EditorEntityTypeIdentifier entity)abstract EditorEntityTypeIdentifiergetEntity()abstract java.lang.StringgetId()abstract java.lang.StringgetLabel()
-
-
-
Method Detail
-
getId
public abstract java.lang.String getId()
-
getLabel
@Nullable @CheckForNull public abstract java.lang.String getLabel()
-
getEntity
@Nullable @CheckForNull public abstract EditorEntityTypeIdentifier getEntity()
-
create
public static EditorAttributeIdentifier create(java.lang.String id, @Nullable @CheckForNull java.lang.String label)
-
create
public static EditorAttributeIdentifier create(java.lang.String id, @Nullable @CheckForNull java.lang.String label, @Nullable @CheckForNull EditorEntityTypeIdentifier entity)
-
-