Class RECharacter
java.lang.Object
com.codename1.util.regex.RECharacter
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final bytestatic final byte -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic bytegetType(char c) static booleanisDigit(char c) static booleanisJavaIdentifierPart(char c) static booleanisJavaIdentifierStart(char c) static booleanisLetter(char c) static booleanisLetterOrDigit(char c) static booleanisSpaceChar(char c) static booleanisWhitespace(char c) static chartoLowerCase(char c) static chartoUpperCase(char c) Methods inherited from class Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()booleanIndicates whether some other object is "equal to" this one.final ClassgetClass()Returns the runtime class of an object.inthashCode()Returns a hash code value for the object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes current thread to wait until another thread invokes the method or the method for this object.final voidwait(long timeout) Causes current thread to wait until either another thread invokes the method or the method for this object, or a specified amount of time has elapsed.final voidwait(long timeout, int nanos) Causes current thread to wait until another thread invokes the method or the method for this object, or some other thread interrupts the current thread, or a certain amount of real time has elapsed.
-
Field Details
-
UNASSIGNED
public static final byte UNASSIGNED- See Also:
-
UPPERCASE_LETTER
public static final byte UPPERCASE_LETTER- See Also:
-
LOWERCASE_LETTER
public static final byte LOWERCASE_LETTER- See Also:
-
TITLECASE_LETTER
public static final byte TITLECASE_LETTER- See Also:
-
MODIFIER_LETTER
public static final byte MODIFIER_LETTER- See Also:
-
OTHER_LETTER
public static final byte OTHER_LETTER- See Also:
-
NON_SPACING_MARK
public static final byte NON_SPACING_MARK- See Also:
-
ENCLOSING_MARK
public static final byte ENCLOSING_MARK- See Also:
-
COMBINING_SPACING_MARK
public static final byte COMBINING_SPACING_MARK- See Also:
-
DECIMAL_DIGIT_NUMBER
public static final byte DECIMAL_DIGIT_NUMBER- See Also:
-
LETTER_NUMBER
public static final byte LETTER_NUMBER- See Also:
-
OTHER_NUMBER
public static final byte OTHER_NUMBER- See Also:
-
SPACE_SEPARATOR
public static final byte SPACE_SEPARATOR- See Also:
-
LINE_SEPARATOR
public static final byte LINE_SEPARATOR- See Also:
-
PARAGRAPH_SEPARATOR
public static final byte PARAGRAPH_SEPARATOR- See Also:
-
CONTROL
public static final byte CONTROL- See Also:
-
FORMAT
public static final byte FORMAT- See Also:
-
PRIVATE_USE
public static final byte PRIVATE_USE- See Also:
-
SURROGATE
public static final byte SURROGATE- See Also:
-
DASH_PUNCTUATION
public static final byte DASH_PUNCTUATION- See Also:
-
START_PUNCTUATION
public static final byte START_PUNCTUATION- See Also:
-
END_PUNCTUATION
public static final byte END_PUNCTUATION- See Also:
-
CONNECTOR_PUNCTUATION
public static final byte CONNECTOR_PUNCTUATION- See Also:
-
OTHER_PUNCTUATION
public static final byte OTHER_PUNCTUATION- See Also:
-
MATH_SYMBOL
public static final byte MATH_SYMBOL- See Also:
-
CURRENCY_SYMBOL
public static final byte CURRENCY_SYMBOL- See Also:
-
MODIFIER_SYMBOL
public static final byte MODIFIER_SYMBOL- See Also:
-
OTHER_SYMBOL
public static final byte OTHER_SYMBOL- See Also:
-
-
Constructor Details
-
RECharacter
public RECharacter()
-
-
Method Details
-
toLowerCase
public static char toLowerCase(char c) -
toUpperCase
public static char toUpperCase(char c) -
isWhitespace
public static boolean isWhitespace(char c) -
isDigit
public static boolean isDigit(char c) -
isLetter
public static boolean isLetter(char c) -
isLetterOrDigit
public static boolean isLetterOrDigit(char c) -
isSpaceChar
public static boolean isSpaceChar(char c) -
isJavaIdentifierStart
public static boolean isJavaIdentifierStart(char c) -
isJavaIdentifierPart
public static boolean isJavaIdentifierPart(char c) -
getType
public static byte getType(char c)
-