/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.commons.lang; import java.io.Serializable; import java.util.Iterator; import java.util.NoSuchElementException; import org.apache.commons.lang.text.StrBuilder; /** *
A contiguous range of characters, optionally negated.
* *Instances are immutable.
* *#ThreadSafe#
* @author Apache Software Foundation * @author Chris Feldhacker * @author Gary Gregory * @since 1.0 * @version $Id: CharRange.java,v 1.2 2013/03/15 09:52:49 andreyb Exp $ */ public final class CharRange implements Serializable { /** * Required for serialization support. Lang version 2.0. * * @see java.io.Serializable */ private static final long serialVersionUID = 8270183163158333422L; /** The first character, inclusive, in the range. */ private final char start; /** The last character, inclusive, in the range. */ private final char end; /** True if the range is everything except the characters specified. */ private final boolean negated; /** Cached toString. */ private transient String iToString; // Static //----------------------------------------------------------------------- /** *Constructs a CharRange
over a single character.
Constructs a negated CharRange
over a single character.
Constructs a CharRange
over a set of characters.
Constructs a negated CharRange
over a set of characters.
Constructs a CharRange
over a single character.
Constructs a CharRange
over a single character,
* optionally negating the range.
A negated range includes everything except the specified char.
* * @param ch only character in this range * @param negated true to express everything except the range */ public CharRange(char ch, boolean negated) { this(ch, ch, negated); } /** *Constructs a CharRange
over a set of characters.
Constructs a CharRange
over a set of characters,
* optionally negating the range.
A negated range includes everything except that defined by the * start and end characters.
* *If start and end are in the wrong order, they are reversed.
* Thus a-e
is the same as e-a
.
Gets the start character for this character range.
* * @return the start char (inclusive) */ public char getStart() { return this.start; } /** *Gets the end character for this character range.
* * @return the end char (inclusive) */ public char getEnd() { return this.end; } /** *Is this CharRange
negated.
A negated range includes everything except that defined by the * start and end characters.
* * @returntrue
is negated
*/
public boolean isNegated() {
return negated;
}
// Contains
//-----------------------------------------------------------------------
/**
* Is the character specified contained in this range.
* * @param ch the character to check * @returntrue
if this range contains the input character
*/
public boolean contains(char ch) {
return (ch >= start && ch <= end) != negated;
}
/**
* Are all the characters of the passed in range contained in * this range.
* * @param range the range to check against * @returntrue
if this range entirely contains the input range
* @throws IllegalArgumentException if null
input
*/
public boolean contains(CharRange range) {
if (range == null) {
throw new IllegalArgumentException("The Range must not be null");
}
if (negated) {
if (range.negated) {
return start >= range.start && end <= range.end;
}
return range.end < start || range.start > end;
}
if (range.negated) {
return start == 0 && end == Character.MAX_VALUE;
}
return start <= range.start && end >= range.end;
}
// Basics
//-----------------------------------------------------------------------
/**
* Compares two CharRange objects, returning true if they represent * exactly the same range of characters defined in the same way.
* * @param obj the object to compare to * @return true if equal */ public boolean equals(Object obj) { if (obj == this) { return true; } if (obj instanceof CharRange == false) { return false; } CharRange other = (CharRange) obj; return start == other.start && end == other.end && negated == other.negated; } /** *Gets a hashCode compatible with the equals method.
* * @return a suitable hashCode */ public int hashCode() { return 83 + start + 7 * end + (negated ? 1 : 0); } /** *Gets a string representation of the character range.
* * @return string representation of this range */ public String toString() { if (iToString == null) { StrBuilder buf = new StrBuilder(4); if (isNegated()) { buf.append('^'); } buf.append(start); if (start != end) { buf.append('-'); buf.append(end); } iToString = buf.toString(); } return iToString; } // Expansions //----------------------------------------------------------------------- /** *Returns an iterator which can be used to walk through the characters described by this range.
* *#NotThreadSafe# the iterator is not threadsafe
* @return an iterator to the chars represented by this range * @since 2.5 */ public Iterator iterator() { return new CharacterIterator(this); } /** * Character {@link Iterator}. *#NotThreadSafe#
*/ private static class CharacterIterator implements Iterator { /** The current character */ private char current; private final CharRange range; private boolean hasNext; /** * Construct a new iterator for the character range. * * @param r The character range */ private CharacterIterator(CharRange r) { range = r; hasNext = true; if (range.negated) { if (range.start == 0) { if (range.end == Character.MAX_VALUE) { // This range is an empty set hasNext = false; } else { current = (char) (range.end + 1); } } else { current = 0; } } else { current = range.start; } } /** * Prepare the next character in the range. */ private void prepareNext() { if (range.negated) { if (current == Character.MAX_VALUE) { hasNext = false; } else if (current + 1 == range.start) { if (range.end == Character.MAX_VALUE) { hasNext = false; } else { current = (char) (range.end + 1); } } else { current = (char) (current + 1); } } else if (current < range.end) { current = (char) (current + 1); } else { hasNext = false; } } /** * Has the iterator not reached the end character yet? * * @returntrue
if the iterator has yet to reach the character date
*/
public boolean hasNext() {
return hasNext;
}
/**
* Return the next character in the iteration
*
* @return Character
for the next character
*/
public Object next() {
if (hasNext == false) {
throw new NoSuchElementException();
}
char cur = current;
prepareNext();
return new Character(cur);
}
/**
* Always throws UnsupportedOperationException.
*
* @throws UnsupportedOperationException
* @see java.util.Iterator#remove()
*/
public void remove() {
throw new UnsupportedOperationException();
}
}
}