Interface Binable

  • All Known Implementing Classes:
    Binary

    public interface Binable
    Represent a class that allows any type of objects, not just String. It is usually implemented by a class that also implements Item. Currently, only Binary implements it.
    Author:
    tomyeh
    See Also:
    Item, Group, Attributable, Namespaceable
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.Object getValue()
      Gets the value of a item that accepts any type as its value.
      void setValue​(java.lang.Object value)
      Sets the value of a item that accepts any type as its value.
    • Method Detail

      • getValue

        java.lang.Object getValue()
        Gets the value of a item that accepts any type as its value.
      • setValue

        void setValue​(java.lang.Object value)
        Sets the value of a item that accepts any type as its value.