Class ItemBuilder.ArrayItem

  • All Implemented Interfaces:
    IItem
    Enclosing class:
    ItemBuilder

    private static class ItemBuilder.ArrayItem
    extends java.lang.Object
    implements IItem
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private IType<IItem> type  
      private java.lang.Object[] values  
    • Constructor Summary

      Constructors 
      Constructor Description
      ArrayItem​(IType<IItem> type, java.lang.Object... values)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      IType<IItem> getType()
      The type of this item (analogous to Object.getClass()).
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • values

        private java.lang.Object[] values
    • Constructor Detail

      • ArrayItem

        ArrayItem​(IType<IItem> type,
                  java.lang.Object... values)
    • Method Detail

      • getType

        public IType<IItem> getType()
        Description copied from interface: IItem
        The type of this item (analogous to Object.getClass()).
        Specified by:
        getType in interface IItem
        Returns:
        the type of this item
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object