Class BucketsPath

    • Method Detail

      • isArray

        public boolean isArray()
        Is this variant instance of kind array?
      • array

        public java.util.List<java.lang.String> array()
        Get the array variant value.
        Throws:
        java.lang.IllegalStateException - if the current variant is not of the array kind.
      • isDict

        public boolean isDict()
        Is this variant instance of kind dict?
      • dict

        public java.util.Map<java.lang.String,​java.lang.String> dict()
        Get the dict variant value.
        Throws:
        java.lang.IllegalStateException - if the current variant is not of the dict kind.
      • isSingle

        public boolean isSingle()
        Is this variant instance of kind single?
      • single

        public java.lang.String single()
        Get the single variant value.
        Throws:
        java.lang.IllegalStateException - if the current variant is not of the single kind.