Interface SAPAbapVariantComp
-
- All Known Subinterfaces:
SAPAbapVariant
public interface SAPAbapVariantComp
This class is only required in order to be able to provide binary compatibility with older releases. You should never access this class directly.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Iterator<SAPAbapVariantParameter>
getSAPAbapVariantParameters()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useSAPAbapVariant.getSAPAbapVariantParameters()
instead.Iterator<SAPAbapVariantParameterValue>
getSAPAbapVariantParameterValues()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useSAPAbapVariant.getSAPAbapVariantParameterValues()
instead.Iterator<SAPAbapVariantSelopt>
getSAPAbapVariantSelopts()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useSAPAbapVariant.getSAPAbapVariantSelopts()
instead.
-
-
-
Method Detail
-
getSAPAbapVariantParameters
@Deprecated Iterator<SAPAbapVariantParameter> getSAPAbapVariantParameters()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useSAPAbapVariant.getSAPAbapVariantParameters()
instead.Get anIterator
over an ordered collection ofSAPAbapVariantParameters
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Variants of the ABAP programs imported from the SAP system.- Returns:
- An
Iterator
over an ordered collection ofSAPAbapVariantParameter
objects .
-
getSAPAbapVariantParameterValues
@Deprecated Iterator<SAPAbapVariantParameterValue> getSAPAbapVariantParameterValues()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useSAPAbapVariant.getSAPAbapVariantParameterValues()
instead.Get anIterator
over an ordered collection ofSAPAbapVariantParameterValues
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Variant parameter values of the ABAP program variant imported from the SAP system.- Returns:
- An
Iterator
over an ordered collection ofSAPAbapVariantParameterValue
objects .
-
getSAPAbapVariantSelopts
@Deprecated Iterator<SAPAbapVariantSelopt> getSAPAbapVariantSelopts()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useSAPAbapVariant.getSAPAbapVariantSelopts()
instead.Get anIterator
over an ordered collection ofSAPAbapVariantSelopts
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Variant select option values of the ABAP program variant imported from the SAP system.- Returns:
- An
Iterator
over an ordered collection ofSAPAbapVariantSelopt
objects .
-
-