Package com.yahoo.text
Class Identifier
- java.lang.Object
-
- com.yahoo.text.AbstractUtf8Array
-
- com.yahoo.text.Utf8Array
-
- com.yahoo.text.Identifier
-
- All Implemented Interfaces:
Comparable<AbstractUtf8Array>
- Direct Known Subclasses:
CaseInsensitiveIdentifier
,LowercaseIdentifier
public class Identifier extends Utf8Array
This class is used to represent a legal identifier of [a-zA-Z_][a-zA-Z_0-9]*- Author:
- baldersheim
-
-
Constructor Summary
Constructors Constructor Description Identifier(byte[] utf8)
Identifier(AbstractUtf8Array utf8)
Identifier(String s)
-
Method Summary
-
Methods inherited from class com.yahoo.text.Utf8Array
getByteLength, getByteOffset, getBytes
-
Methods inherited from class com.yahoo.text.AbstractUtf8Array
ascii7BitLowerCase, compareTo, equals, getByte, hashCode, isEmpty, toString, wrap, writeTo
-
-
-
-
Constructor Detail
-
Identifier
public Identifier(String s)
-
Identifier
public Identifier(AbstractUtf8Array utf8)
-
Identifier
public Identifier(byte[] utf8)
-
-