Package org.togglz.core.activation
Class AbstractTokenizedActivationStrategy.Token
- java.lang.Object
-
- org.togglz.core.activation.AbstractTokenizedActivationStrategy.Token
-
- Enclosing class:
- AbstractTokenizedActivationStrategy
public static final class AbstractTokenizedActivationStrategy.Token extends Object
Contains information for a specific token including the token value and whether it has been negated.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()Returns the value for thisAbstractTokenizedActivationStrategy.Token.booleanisNegated()Returns whether or not thisAbstractTokenizedActivationStrategy.Tokenis negated.
-
-
-
Method Detail
-
isNegated
public boolean isNegated()
Returns whether or not this
AbstractTokenizedActivationStrategy.Tokenis negated.- Returns:
- true if this token is negated; otherwise false.
-
getValue
public String getValue()
Returns the value for this
AbstractTokenizedActivationStrategy.Token.- Returns:
- The value.
-
-