Tabnine Logo
Scanner.isEqualIgnoreCase
Code IndexAdd Tabnine to your IDE (free)

How to use
isEqualIgnoreCase
method
in
org.apache.batik.css.parser.Scanner

Best Java code snippets using org.apache.batik.css.parser.Scanner.isEqualIgnoreCase (Showing top 3 results out of 315)

origin: apache/batik

case 'C':
  start = position - 1;
  if (isEqualIgnoreCase(nextChar(), 'h') &&
    isEqualIgnoreCase(nextChar(), 'a') &&
    isEqualIgnoreCase(nextChar(), 'r') &&
    isEqualIgnoreCase(nextChar(), 's') &&
    isEqualIgnoreCase(nextChar(), 'e') &&
    isEqualIgnoreCase(nextChar(), 't')) {
    nextChar();
    type = LexicalUnits.CHARSET_SYMBOL;
case 'F':
  start = position - 1;
  if (isEqualIgnoreCase(nextChar(), 'o') &&
    isEqualIgnoreCase(nextChar(), 'n') &&
    isEqualIgnoreCase(nextChar(), 't') &&
    isEqualIgnoreCase(nextChar(), '-') &&
    isEqualIgnoreCase(nextChar(), 'f') &&
    isEqualIgnoreCase(nextChar(), 'a') &&
    isEqualIgnoreCase(nextChar(), 'c') &&
    isEqualIgnoreCase(nextChar(), 'e')) {
    nextChar();
    type = LexicalUnits.FONT_FACE_SYMBOL;
case 'I':
  start = position - 1;
  if (isEqualIgnoreCase(nextChar(), 'm') &&
    isEqualIgnoreCase(nextChar(), 'p') &&
    isEqualIgnoreCase(nextChar(), 'o') &&
origin: org.apache.xmlgraphics/batik-css

case 'C':
  start = position - 1;
  if (isEqualIgnoreCase(nextChar(), 'h') &&
    isEqualIgnoreCase(nextChar(), 'a') &&
    isEqualIgnoreCase(nextChar(), 'r') &&
    isEqualIgnoreCase(nextChar(), 's') &&
    isEqualIgnoreCase(nextChar(), 'e') &&
    isEqualIgnoreCase(nextChar(), 't')) {
    nextChar();
    type = LexicalUnits.CHARSET_SYMBOL;
case 'F':
  start = position - 1;
  if (isEqualIgnoreCase(nextChar(), 'o') &&
    isEqualIgnoreCase(nextChar(), 'n') &&
    isEqualIgnoreCase(nextChar(), 't') &&
    isEqualIgnoreCase(nextChar(), '-') &&
    isEqualIgnoreCase(nextChar(), 'f') &&
    isEqualIgnoreCase(nextChar(), 'a') &&
    isEqualIgnoreCase(nextChar(), 'c') &&
    isEqualIgnoreCase(nextChar(), 'e')) {
    nextChar();
    type = LexicalUnits.FONT_FACE_SYMBOL;
case 'I':
  start = position - 1;
  if (isEqualIgnoreCase(nextChar(), 'm') &&
    isEqualIgnoreCase(nextChar(), 'p') &&
    isEqualIgnoreCase(nextChar(), 'o') &&
origin: fr.avianey.apache-xmlgraphics/batik

case 'C':
  start = position - 1;
  if (isEqualIgnoreCase(nextChar(), 'h') &&
    isEqualIgnoreCase(nextChar(), 'a') &&
    isEqualIgnoreCase(nextChar(), 'r') &&
    isEqualIgnoreCase(nextChar(), 's') &&
    isEqualIgnoreCase(nextChar(), 'e') &&
    isEqualIgnoreCase(nextChar(), 't')) {
    nextChar();
    type = LexicalUnits.CHARSET_SYMBOL;
case 'F':
  start = position - 1;
  if (isEqualIgnoreCase(nextChar(), 'o') &&
    isEqualIgnoreCase(nextChar(), 'n') &&
    isEqualIgnoreCase(nextChar(), 't') &&
    isEqualIgnoreCase(nextChar(), '-') &&
    isEqualIgnoreCase(nextChar(), 'f') &&
    isEqualIgnoreCase(nextChar(), 'a') &&
    isEqualIgnoreCase(nextChar(), 'c') &&
    isEqualIgnoreCase(nextChar(), 'e')) {
    nextChar();
    type = LexicalUnits.FONT_FACE_SYMBOL;
case 'I':
  start = position - 1;
  if (isEqualIgnoreCase(nextChar(), 'm') &&
    isEqualIgnoreCase(nextChar(), 'p') &&
    isEqualIgnoreCase(nextChar(), 'o') &&
org.apache.batik.css.parserScannerisEqualIgnoreCase

Javadoc

Compares the given int with the given character, ignoring case.

Popular methods of Scanner

  • <init>
    Creates a new Scanner object.
  • clearBuffer
    Clears the buffer.
  • close
    Closes the underlying stream used by the scanner.
  • dotNumber
    Scans the decimal part of a number.
  • endGap
    Returns the end gap of the current lexical unit.
  • escape
    Scans an escape sequence, if one.
  • getColumn
    Returns the current column.
  • getLine
    Returns the current line.
  • getStringValue
    Returns the string representation of the current lexical unit.
  • getType
    The current lexical unit type like defined in LexicalUnits.
  • next
    Returns the next token.
  • nextChar
    Sets the value of the current char to the next character or -1 if the end of stream has been reached
  • next,
  • nextChar,
  • nextToken,
  • number,
  • numberUnit,
  • scanAtRule,
  • string1,
  • string2

Popular in Java

  • Making http post requests using okhttp
  • compareTo (BigDecimal)
  • runOnUiThread (Activity)
  • setRequestProperty (URLConnection)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • JTextField (javax.swing)
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now