Class Strings.Builder

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private boolean ignoreCase
      Ignores case when possible.
      private boolean nullIsLess
      Compares null as less when possible.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private Builder()
      Constructs a new instance.
    • Field Detail

      • ignoreCase

        private boolean ignoreCase
        Ignores case when possible.
      • nullIsLess

        private boolean nullIsLess
        Compares null as less when possible.
    • Constructor Detail

      • Builder

        private Builder()
        Constructs a new instance.
    • Method Detail

      • get

        public Strings get()
        Gets a new Strings instance.
        Returns:
        a result
      • setIgnoreCase

        public Strings.Builder setIgnoreCase​(boolean ignoreCase)
        Sets the ignoreCase property for new Strings instances.
        Parameters:
        ignoreCase - the ignoreCase property for new Strings instances.
        Returns:
        this instance.
      • setNullIsLess

        public Strings.Builder setNullIsLess​(boolean nullIsLess)
        Sets the nullIsLess property for new Strings instances.
        Parameters:
        nullIsLess - the nullIsLess property for new Strings instances.
        Returns:
        this instance.