Interface AbapVariantValue
-
- All Known Subinterfaces:
AbapVariantParameter
,AbapVariantSelectOption
public interface AbapVariantValue
A variant of an ABAP report
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getName()
Get the name of this variant valueboolean
isParameter()
Check whether this variant value is a parameterboolean
isSelectOption()
Check whether this value is a select option
-
-
-
Method Detail
-
getName
String getName()
Get the name of this variant value- Returns:
- name of the variant value
-
isParameter
boolean isParameter()
Check whether this variant value is a parameter- Returns:
true
if this variant value is a parameter,false
otherwise
-
isSelectOption
boolean isSelectOption()
Check whether this value is a select option- Returns:
true
if this variant value is a select option,false
otherwise
-
-