MCPcopy
hub / github.com/apache/commons-lang / isNot

Method isNot

src/main/java/org/apache/commons/lang3/CharRange.java:99–101  ·  view source on GitHub ↗

Constructs a negated CharRange over a single character. @param ch only character in this range @return the new CharRange object @see CharRange#CharRange(char, char, boolean) @since 2.5

(final char ch)

Source from the content-addressed store, hash-verified

97 * @since 2.5
98 */
99 public static CharRange isNot(final char ch) {
100 return new CharRange(ch, ch, true);
101 }
102
103 /**
104 * <p>Constructs a {@code CharRange} over a set of characters.</p>

Callers 6

testIteratorMethod · 0.95
addMethod · 0.95

Calls

no outgoing calls