Class Meta

    • Constructor Detail

      • Meta

        public Meta​(String type)
        Creates a Meta object with a given type.
        Parameters:
        type - the type of the object (cannot be null).
      • Meta

        public Meta​(String type,
                    String data)
        Creates a Meta object with a given type and data.
        Parameters:
        type - the type of the object (cannot be null).
        data - the data of the object (can be null).
      • Meta

        public Meta​(Meta original)
        Copy constructor.
        Parameters:
        original - the original object to duplicate.
    • Method Detail

      • isGroup

        public boolean isGroup()
        Description copied from interface: IMetadataItem
        Indicates if this item is a meta-group or not.
        Specified by:
        isGroup in interface IMetadataItem
        Returns:
        true if this is a meta-group object, false if it is a meta object.
      • getType

        public String getType()
      • setType

        public void setType​(String type)
      • getData

        public String getData()
      • setData

        public void setData​(String data)