Class BooleanWrapperHolder

  • All Implemented Interfaces:
    Holder

    public final class BooleanWrapperHolder
    extends java.lang.Object
    implements Holder
    Holder for Booleans.
    Version:
    1.0
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.Boolean value
      The Boolean contained by this holder.
    • Constructor Summary

      Constructors 
      Constructor Description
      BooleanWrapperHolder()
      Make a new BooleanWrapperHolder with a null value.
      BooleanWrapperHolder​(java.lang.Boolean value)
      Make a new BooleanWrapperHolder with value as the value.
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • value

        public java.lang.Boolean value
        The Boolean contained by this holder.
    • Constructor Detail

      • BooleanWrapperHolder

        public BooleanWrapperHolder()
        Make a new BooleanWrapperHolder with a null value.
      • BooleanWrapperHolder

        public BooleanWrapperHolder​(java.lang.Boolean value)
        Make a new BooleanWrapperHolder with value as the value.
        Parameters:
        value - the Boolean to hold