Class Meta

    • Method Detail

      • hasEntry

        public boolean hasEntry​(String key)
        Returns whether key is the key of an entry in this Meta object.
        Parameters:
        key - the key of the entry
        Returns:
        whether key is the key of an entry in this Meta object
        Throws:
        NullPointerException - if key is null
        Since:
        1.0.0
      • getEntry

        public String getEntry​(String key)
        Returns the value of the entry with the key key in this Meta object.
        Parameters:
        key - the key of the entry
        Returns:
        the value of the entry with the key key in this Meta object
        Throws:
        NullPointerException - if key is null
        IllegalArgumentException - if key is not the key of an entry in this Meta object
        Since:
        1.0.0
      • getEntries

        public Map<String,​String> getEntries()
        Returns all entries in this Meta object.
        Returns:
        all entries in this Meta object
        Since:
        1.0.0