Interface CqnListValue

All Superinterfaces:
CqnToken, CqnValue, JSONizable

public interface CqnListValue extends CqnValue
  • Method Details

    • values

      Stream<CqnValue> values()
    • size

      int size()
    • isList

      default boolean isList()
      Description copied from interface: CqnValue
      Returns true if this is a CqnListValue value.
      Specified by:
      isList in interface CqnValue
      Returns:
      true if this is a list value, otherwise false
    • asList

      default CqnListValue asList()
      Description copied from interface: CqnValue
      Casts this value to CqnListValue.
      Specified by:
      asList in interface CqnValue
      Returns:
      this value as a list value
    • accept

      default void accept(CqnVisitor visitor)
      Description copied from interface: CqnToken
      Traverses the expression tree represented by this token with a given visitor. The traversal order is depth-first. If this token has child nodes they are traversed first by dispatching the visitor to the children's accept methods. Afterwards this token is passed to the visitor's visit method specific for this token's type.
      Specified by:
      accept in interface CqnToken
      Parameters:
      visitor - the CqnVisitor