Package oracle.rules.sdk2.ruleset
Class SimpleTestPermutedChoice
java.lang.Object
oracle.rules.sdk2.dictionary.AbstractChoiceImpl
oracle.rules.sdk2.dictionary.AbstractVerbalChoice
oracle.rules.sdk2.ruleset.AbstractPermutedChoice
oracle.rules.sdk2.ruleset.SimpleTestPermutedChoice
- All Implemented Interfaces:
Serializable
,Cloneable
,Choice
,VerbalChoice
- Since:
- 12.1.2
- Author:
- gopandey
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface oracle.rules.sdk2.dictionary.Choice
Choice.Kind
-
Field Summary
Fields inherited from interface oracle.rules.sdk2.dictionary.VerbalChoice
VERBAL_CHOICE_EXPR, VERBAL_CHOICE_TYPE, VERBAL_CHOICE_VAR
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addAlternateOperators
(String... alternateOperators) void
addExpression
(String paramValue) Adds an Expression to the VerbalChoice if and only ifVerbalChoice.canAddExpression()
is true.void
addExpression
(Choice paramValue) Adds an Expression to the VerbalChoice if and only ifVerbalChoice.canAddExpression()
is true.boolean
Can be used to check if Expressions can be added to this VerbalChoiceboolean
Can be used to check if Expressions can be removed from this VerbalChoiceboolean
static SimpleTestPermutedChoice
newPermutedChoice
(String operator, SimpleTest dc) static SimpleTestPermutedChoice
void
Removes an expression from the VerbalChoice if and only ifVerbalChoice.canRemoveExpression(oracle.rules.sdk2.dictionary.VerbalChoiceToken)
is true and there are more than two Expressions.Methods inherited from class oracle.rules.sdk2.ruleset.AbstractPermutedChoice
getAEReferences, getPermutedPropertyChoice, getPermutedPropertyNames, getSimilarChoices, getTranslatedValue, getValue, hasParameters
Methods inherited from class oracle.rules.sdk2.dictionary.AbstractVerbalChoice
equals, getDictionary, getName, getTranslatedName, getVerbalChoiceTokenizer, getVerbalValue, hashCode, isNewDefinition, toString
Methods inherited from class oracle.rules.sdk2.dictionary.AbstractChoiceImpl
getAltValue, getChildren, getDefinition, getDescription, getDescription, getID, getKind, getListContentType, getListContentType, getListContentTypeID, getLiteralValue, getName, getParent, getTranslatedName, getTranslatedValue, getType, getType, getTypeID, getValue, getVerbalValue, isAssignable, isAssignablePrefix, isExpanded, isGlobal, isQualified, isSelectable, isStatic, isTestable, setDefinition, setName, setSelectable
Methods inherited from interface oracle.rules.sdk2.dictionary.Choice
getAltValue, getChildren, getDefinition, getDescription, getDescription, getID, getKind, getListContentType, getListContentType, getListContentTypeID, getLiteralValue, getName, getParent, getTranslatedName, getTranslatedValue, getType, getType, getTypeID, getValue, getVerbalValue, isAssignable, isAssignablePrefix, isExpanded, isGlobal, isQualified, isSelectable, isStatic, isTestable
-
Method Details
-
newPermutedChoice
-
newPermutedChoice
-
canAddExpression
public boolean canAddExpression()Description copied from interface:VerbalChoice
Can be used to check if Expressions can be added to this VerbalChoice- Specified by:
canAddExpression
in interfaceVerbalChoice
- Overrides:
canAddExpression
in classAbstractVerbalChoice
- Returns:
- true if this VerbalChoice is for a SimpleTest and has the [in] operator, false otherwise
-
canRemoveExpression
Description copied from interface:VerbalChoice
Can be used to check if Expressions can be removed from this VerbalChoice- Specified by:
canRemoveExpression
in interfaceVerbalChoice
- Overrides:
canRemoveExpression
in classAbstractVerbalChoice
- Parameters:
token
- Token representing the Expression to be removed- Returns:
- true if this VerbalChoice is for a SimpleTest and has the [in] operator and has more than 2 expressions, false otherwise
-
addExpression
Description copied from interface:VerbalChoice
Adds an Expression to the VerbalChoice if and only ifVerbalChoice.canAddExpression()
is true. Else, this is a no-op. Adding an Expression resets the VerbalChoice. To obtain the new display value for the VerbalChoice, MUST iterate through theVerbalChoiceTokenizer
from the beginning- Specified by:
addExpression
in interfaceVerbalChoice
- Overrides:
addExpression
in classAbstractVerbalChoice
- Parameters:
paramValue
- Expression Value
-
addExpression
Description copied from interface:VerbalChoice
Adds an Expression to the VerbalChoice if and only ifVerbalChoice.canAddExpression()
is true. Else, this is a no-op. Adding an Expression resets the VerbalChoice. To obtain the new display value for the VerbalChoice, MUST iterate through theVerbalChoiceTokenizer
from the beginning- Specified by:
addExpression
in interfaceVerbalChoice
- Overrides:
addExpression
in classAbstractVerbalChoice
- Parameters:
paramValue
- Choice representing the Expression Value
-
removeExpression
Description copied from interface:VerbalChoice
Removes an expression from the VerbalChoice if and only ifVerbalChoice.canRemoveExpression(oracle.rules.sdk2.dictionary.VerbalChoiceToken)
is true and there are more than two Expressions. Else, this is a no-op. Removing an Expression resets the VerbalChoice. To obtain the new display value for the VerbalChoice, MUST iterate through theVerbalChoiceTokenizer
from the beginning- Specified by:
removeExpression
in interfaceVerbalChoice
- Overrides:
removeExpression
in classAbstractVerbalChoice
- Parameters:
token
- Token representing the Expression to be removed
-
getAlternateChoices
- Overrides:
getAlternateChoices
in classAbstractPermutedChoice
-
isPattern
public boolean isPattern() -
addAlternateOperators
-