Codota Logo
Scanner.isEqualIgnoreCase
Code IndexAdd Codota 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)

  • Common ways to obtain Scanner
private void myMethod () {
Scanner s =
  • Codota IconReader r;new Scanner(r)
  • Codota IconInputStream is;InputSource inputSource;new Scanner(is, inputSource.getEncoding())
  • Smart code suggestions by Codota
}
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

  • Updating database using SQL prepared statement
  • setContentView (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • runOnUiThread (Activity)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • List (java.util)
    A List is a collection which maintains an ordering for its elements. Every element in the List has a
  • Locale (java.util)
    A Locale object represents a specific geographical, political, or cultural region. An operation that
  • ImageIO (javax.imageio)
  • LogFactory (org.apache.commons.logging)
    A minimal incarnation of Apache Commons Logging's LogFactory API, providing just the common Log look
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now