Interface KeyValueContainer

All Superinterfaces:
InstanceContainer<KeyValueEntity>
All Known Subinterfaces:
KeyValueCollectionContainer
All Known Implementing Classes:
KeyValueCollectionContainerImpl, KeyValueContainerImpl

public interface KeyValueContainer extends InstanceContainer<KeyValueEntity>
Container for a single KeyValueEntity instance.
  • Method Details

    • setIdName

      KeyValueContainer setIdName(String name)
      Sets the name of a property that represents the entity id.
      Returns:
      this instance for chaining
    • getIdName

      @Nullable String getIdName()
      Returns the name of a property that represents the entity id.
    • addProperty

      KeyValueContainer addProperty(String name)
      Adds a string property to the meta-class of this loader.
      Returns:
      this instance for chaining
    • addProperty

      KeyValueContainer addProperty(String name, Class aClass)
      Adds a property of the given Java class to the meta-class of this loader. The Java class can be an entity or a datatype.
      Returns:
      this instance for chaining
    • addProperty

      KeyValueContainer addProperty(String name, Datatype datatype)
      Adds a property of the given datatype to the meta-class of this loader.
      Returns:
      this instance for chaining