org.apache.batik.css.parser
Interface LexicalUnits


public interface LexicalUnits

This interface defines the constants that represent CSS lexical units.


Field Summary
static int ANY
          Represents the '*' lexical unit.
static int AT_KEYWORD
          Represents the '@ident' lexical unit.
static int CDC
          Represents the '-->' lexical unit.
static int CDO
          Represents the '
static int CHARSET_SYMBOL
          Represents the '@charset' lexical unit.
static int CM
          Represents a cm lexical unit.
static int COLON
          Represents the ':' lexical unit.
static int COMMA
          Represents the ',' lexical unit.
static int COMMENT
          Represents the comment lexical unit.
static int DASHMATCH
          Represents the '|=' lexical unit.
static int DEG
          Represents a deg lexical unit.
static int DIMENSION
          Represents a dimension lexical unit.
static int DIVIDE
          Represents the '/' lexical unit.
static int DOT
          Represents the '.' lexical unit.
static int EM
          Represents a em lexical unit.
static int EOF
          Represents the EOF lexical unit.
static int EQUAL
          Represents the '=' lexical unit.
static int EX
          Represents a ex lexical unit.
static int FONT_FACE_SYMBOL
          Represents the '@font-face' lexical unit.
static int FUNCTION
          Represents a 'ident(' lexical unit.
static int GRAD
          Represents a grad lexical unit.
static int HASH
          Represents the '#name' lexical unit.
static int HZ
          Represents a hz lexical unit.
static int IDENTIFIER
          Represents the identifier lexical unit.
static int IMPORT_SYMBOL
          Represents the '@import' lexical unit.
static int IMPORTANT_SYMBOL
          Represents the '!
static int IN
          Represents a in lexical unit.
static int INCLUDES
          Represents the '~=' lexical unit.
static int INTEGER
          Represents an integer.
static int KHZ
          Represents a khz lexical unit.
static int LEFT_BRACE
          Represents the '(' lexical unit.
static int LEFT_BRACKET
          Represents the '[' lexical unit.
static int LEFT_CURLY_BRACE
          Represents the '{' lexical unit.
static int MEDIA_SYMBOL
          Represents the '@media' lexical unit.
static int MINUS
          Represents the '-' lexical unit.
static int MM
          Represents a mm lexical unit.
static int MS
          Represents a ms lexical unit.
static int PAGE_SYMBOL
          Represents the '@page' lexical unit.
static int PC
          Represents a pc lexical unit.
static int PERCENTAGE
          Represents a % lexical unit.
static int PLUS
          Represents the '+' lexical unit.
static int PRECEDE
          Represents the '>' lexical unit.
static int PT
          Represents a pt lexical unit.
static int PX
          Represents a px lexical unit.
static int RAD
          Represents a rad lexical unit.
static int REAL
          represents a real number.
static int RIGHT_BRACE
          Represents the ')' lexical unit.
static int RIGHT_BRACKET
          Represents the ']' lexical unit.
static int RIGHT_CURLY_BRACE
          Represents the '}' lexical unit.
static int S
          Represents a s lexical unit.
static int SEMI_COLON
          Represents the ';' lexical unit.
static int SPACE
          Represents the white space lexical unit.
static int STRING
          Represents the string lexical unit.
static int UNICODE_RANGE
          Represents a unicode range lexical unit.
static int URI
          Represents a 'url(URI)' lexical unit.
 

Field Detail

EOF

public static final int EOF
Represents the EOF lexical unit.

LEFT_CURLY_BRACE

public static final int LEFT_CURLY_BRACE
Represents the '{' lexical unit.

RIGHT_CURLY_BRACE

public static final int RIGHT_CURLY_BRACE
Represents the '}' lexical unit.

EQUAL

public static final int EQUAL
Represents the '=' lexical unit.

PLUS

public static final int PLUS
Represents the '+' lexical unit.

MINUS

public static final int MINUS
Represents the '-' lexical unit.

COMMA

public static final int COMMA
Represents the ',' lexical unit.

DOT

public static final int DOT
Represents the '.' lexical unit.

SEMI_COLON

public static final int SEMI_COLON
Represents the ';' lexical unit.

PRECEDE

public static final int PRECEDE
Represents the '>' lexical unit.

DIVIDE

public static final int DIVIDE
Represents the '/' lexical unit.

LEFT_BRACKET

public static final int LEFT_BRACKET
Represents the '[' lexical unit.

RIGHT_BRACKET

public static final int RIGHT_BRACKET
Represents the ']' lexical unit.

ANY

public static final int ANY
Represents the '*' lexical unit.

LEFT_BRACE

public static final int LEFT_BRACE
Represents the '(' lexical unit.

RIGHT_BRACE

public static final int RIGHT_BRACE
Represents the ')' lexical unit.

COLON

public static final int COLON
Represents the ':' lexical unit.

SPACE

public static final int SPACE
Represents the white space lexical unit.

COMMENT

public static final int COMMENT
Represents the comment lexical unit.

STRING

public static final int STRING
Represents the string lexical unit.

IDENTIFIER

public static final int IDENTIFIER
Represents the identifier lexical unit.

CDO

public static final int CDO
Represents the '

CDC

public static final int CDC
Represents the '-->' lexical unit.

IMPORTANT_SYMBOL

public static final int IMPORTANT_SYMBOL
Represents the '!important' lexical unit.

INTEGER

public static final int INTEGER
Represents an integer.

DASHMATCH

public static final int DASHMATCH
Represents the '|=' lexical unit.

INCLUDES

public static final int INCLUDES
Represents the '~=' lexical unit.

HASH

public static final int HASH
Represents the '#name' lexical unit.

IMPORT_SYMBOL

public static final int IMPORT_SYMBOL
Represents the '@import' lexical unit.

AT_KEYWORD

public static final int AT_KEYWORD
Represents the '@ident' lexical unit.

CHARSET_SYMBOL

public static final int CHARSET_SYMBOL
Represents the '@charset' lexical unit.

FONT_FACE_SYMBOL

public static final int FONT_FACE_SYMBOL
Represents the '@font-face' lexical unit.

MEDIA_SYMBOL

public static final int MEDIA_SYMBOL
Represents the '@media' lexical unit.

PAGE_SYMBOL

public static final int PAGE_SYMBOL
Represents the '@page' lexical unit.

DIMENSION

public static final int DIMENSION
Represents a dimension lexical unit.

EX

public static final int EX
Represents a ex lexical unit.

EM

public static final int EM
Represents a em lexical unit.

CM

public static final int CM
Represents a cm lexical unit.

MM

public static final int MM
Represents a mm lexical unit.

IN

public static final int IN
Represents a in lexical unit.

MS

public static final int MS
Represents a ms lexical unit.

HZ

public static final int HZ
Represents a hz lexical unit.

PERCENTAGE

public static final int PERCENTAGE
Represents a % lexical unit.

S

public static final int S
Represents a s lexical unit.

PC

public static final int PC
Represents a pc lexical unit.

PT

public static final int PT
Represents a pt lexical unit.

PX

public static final int PX
Represents a px lexical unit.

DEG

public static final int DEG
Represents a deg lexical unit.

RAD

public static final int RAD
Represents a rad lexical unit.

GRAD

public static final int GRAD
Represents a grad lexical unit.

KHZ

public static final int KHZ
Represents a khz lexical unit.

URI

public static final int URI
Represents a 'url(URI)' lexical unit.

FUNCTION

public static final int FUNCTION
Represents a 'ident(' lexical unit.

UNICODE_RANGE

public static final int UNICODE_RANGE
Represents a unicode range lexical unit.

REAL

public static final int REAL
represents a real number.


Copyright © 2001 Apache Software Foundation. All Rights Reserved.