MCPcopy Create free account
hub / github.com/apache/commons-lang / isNot

Method isNot

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

Constructs a negated CharRange over a single character. A negated range includes everything except that defined by the single character. @param ch only character in this range. @return the new CharRange object. @since 2.5

(final char ch)

Source from the content-addressed store, hash-verified

183 * @since 2.5
184 */
185 public static CharRange isNot(final char ch) {
186 return new CharRange(ch, ch, true);
187 }
188
189 /**
190 * Constructs a negated {@link CharRange} over a set of characters.

Callers 7

testHashCodeLang1802Method · 0.95
testIteratorMethod · 0.95
addMethod · 0.95

Calls

no outgoing calls