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

com.sap.cds.impl.RuntimeCompatibilityMode Maven / Gradle / Ivy

/*******************************************************************
 * © 2021 SAP SE or an SAP affiliate company. All rights reserved. *
 *******************************************************************/
package com.sap.cds.impl;

public class RuntimeCompatibilityMode {

	private final boolean rejectVirtualElements;

	public RuntimeCompatibilityMode(int majorVersion) {
		if (majorVersion < 1 || majorVersion > 2) {
			throw new IllegalArgumentException(String.format("Compiler version %s is not supported", majorVersion));
		}
		this.rejectVirtualElements = majorVersion == 2;
	}

	public boolean rejectVirtualElements() {
		return rejectVirtualElements;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy