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

com.sap.cds.reflect.CdsAnnotation Maven / Gradle / Ivy

There is a newer version: 3.6.1
Show newest version
/*******************************************************************
 * © 2019 SAP SE or an SAP affiliate company. All rights reserved. *
 *******************************************************************/
package com.sap.cds.reflect;

public interface CdsAnnotation extends CdsNamed {

	/**
	 * Returns the name of this {@code CdsAnnotation}.
	 * 
	 * @return the items name of this annotation, not {@code null}
	 */
	String getName();

	/**
	 * Returns the value of this {@code CdsAnnotation}.
	 * 
	 * @return the value of this annotation, not {@code null}
	 */
	T getValue();

	@Override
	default String getKey() {
		return getName();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy