All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sap.cds.ql.cqn.CqnListValue Maven / Gradle / Ivy

The newest version!
/************************************************************************
 * © 2021-2023 SAP SE or an SAP affiliate company. All rights reserved. *
 ************************************************************************/
package com.sap.cds.ql.cqn;

import java.util.stream.Stream;

public interface CqnListValue extends CqnValue {

	Stream values();

	int size();

	@Override
	default boolean isList() {
		return true;
	}

	@Override
	default CqnListValue asList() {
		return this;
	}

	@Override
	default void accept(CqnVisitor visitor) {
		values().forEach(t -> t.accept(visitor));

		visitor.visit(this);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy