Uses of Enum
org.passay.rule.MatchBehavior
Packages that use MatchBehavior
-
Uses of MatchBehavior in org.passay.rule
Fields in org.passay.rule declared as MatchBehaviorModifier and TypeFieldDescriptionprivate final MatchBehaviorAllowedCharacterRule.matchBehaviorWhere to match whitespace.private final MatchBehaviorIllegalCharacterRule.matchBehaviorWhere to match whitespace.private final MatchBehaviorNumberRangeRule.matchBehaviorWhere to match each number.private final MatchBehaviorUsernameRule.matchBehaviorWhere to match username.private final MatchBehaviorWhitespaceRule.matchBehaviorWhere to match whitespace.Methods in org.passay.rule that return MatchBehaviorModifier and TypeMethodDescriptionAllowedCharacterRule.getMatchBehavior()Returns the match behavior for this rule.IllegalCharacterRule.getMatchBehavior()Returns the match behavior for this rule.NumberRangeRule.getMatchBehavior()Returns the match behavior for this rule.UsernameRule.getMatchBehavior()Returns the match behavior for this rule.WhitespaceRule.getMatchBehavior()Returns the match behavior for this rule.static MatchBehaviorReturns the enum constant of this type with the specified name.static MatchBehavior[]MatchBehavior.values()Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.passay.rule with parameters of type MatchBehaviorModifierConstructorDescriptionAllowedCharacterRule(UnicodeString unicodeString, MatchBehavior behavior) Create a new allowed character rule.AllowedCharacterRule(UnicodeString unicodeString, MatchBehavior behavior, boolean reportAll) Create a new allowed character rule.IllegalCharacterRule(UnicodeString unicodeString, MatchBehavior behavior) Create a new illegal character rule.IllegalCharacterRule(UnicodeString unicodeString, MatchBehavior behavior, boolean reportAll) Create a new illegal character rule.NumberRangeRule(int lower, int upper, MatchBehavior behavior) Creates a new number range rule.NumberRangeRule(int lower, int upper, MatchBehavior behavior, boolean reportAll) Creates a new number range rule.UsernameRule(boolean matchBackwards, boolean ignoreCase, MatchBehavior behavior) Create a new username rule.UsernameRule(MatchBehavior behavior) Create a new username rule.WhitespaceRule(MatchBehavior behavior) Creates a new whitespace rule.WhitespaceRule(MatchBehavior behavior, boolean reportAll) Creates a new whitespace rule.WhitespaceRule(UnicodeString unicodeString, MatchBehavior behavior) Creates a new whitespace rule.WhitespaceRule(UnicodeString unicodeString, MatchBehavior behavior, boolean reportAll) Creates a new whitespace rule.