![JAR search and dependency download from the Maven repository](/logo.png)
net.byteseek.matcher.bytes.ByteMatcher Maven / Gradle / Ivy
/*
* Copyright Matt Palmer 2009-2012, All rights reserved.
*
* This code is licensed under a standard 3-clause BSD license:
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* * The names of its contributors may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
package net.byteseek.matcher.bytes;
import net.byteseek.matcher.sequence.SequenceMatcher;
/**
* An interface for classes which attempt to match a single byte in some manner.
*
* It extends {@link SequenceMatcher} as the special case of a sequence with
* a fixed length of one.
*
* All implementations of this interface should either be immutable, or if
* immutability is not possible, then entirely thread-safe by some other means.
*
* @author Matt Palmer
*/
public interface ByteMatcher extends SequenceMatcher {
/**
* Returns whether the matcher matched the byte provided.
*
* Implementations of this method should strive to be as efficient as possible.
* In general, time efficiency is preferred, but space efficiency may also be a
* consideration.
*
* @param theByte The byte to match.
* @return boolean Whether the byte matches the byte matcher.
*/
boolean matches(byte theByte);
/**
* Returns an array of bytes containing all the byte values which this matcher
* can match. The length of the array will be the number returned by
* {@link #getNumberOfMatchingBytes()}.
*
* Implementations of this method may be calculated dynamically,
* and may not be efficient if called repeatedly.
*
* @return byte[] An array of all the bytes that this byte matcher could match.
*/
byte[] getMatchingBytes();
/**
* Returns the number of different byte values which this matcher can match.
*
* Implementations of this method may be calculated dynamically,
* and may not be efficient if called repeatedly.
*
* @return int The number of different bytes this byte matcher will match.
*/
int getNumberOfMatchingBytes();
}