Class CharOperation

java.lang.Object
org.aspectj.asm.internal.CharOperation

public class CharOperation extends Object
Taken from org.aspectj.org.eclipse.jdt.core.compiler.CharOperation
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static char[]
     
    static char[][]
     
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static char[]
    concat​(char[] first, char[] second)
    Taken from org.aspectj.org.eclipse.jdt.core.compiler.CharOperation
    static char[]
    concatWith​(char[][] array, char separator)
     
    static boolean
    equals​(char[][] first, char[][] second)
     
    static boolean
    equals​(char[] first, char[] second)
    Taken from org.aspectj.org.eclipse.jdt.core.compiler.CharOperation
    static int
    hashCode​(char[] array)
     
    static int
    indexOf​(char toBeFound, char[] array)
    Taken from org.aspectj.org.eclipse.jdt.core.compiler.CharOperation
    static int
    lastIndexOf​(char toBeFound, char[] array)
    Taken from org.aspectj.org.eclipse.jdt.core.compiler.CharOperation
    static void
    replace​(char[] array, char toBeReplaced, char replacementChar)
    Taken from org.aspectj.org.eclipse.jdt.core.compiler.CharOperation
    static char[][]
    splitOn​(char divider, char[] array)
     
    static char[][]
    subarray​(char[][] array, int start, int end)
     
    static char[]
    subarray​(char[] array, int start, int end)
    Taken from org.aspectj.org.eclipse.jdt.core.compiler.CharOperation
    static String
    toString​(char[][] array)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • NO_CHAR_CHAR

      public static final char[][] NO_CHAR_CHAR
    • NO_CHAR

      public static final char[] NO_CHAR
  • Constructor Details

    • CharOperation

      public CharOperation()
  • Method Details

    • subarray

      public static final char[] subarray(char[] array, int start, int end)
      Taken from org.aspectj.org.eclipse.jdt.core.compiler.CharOperation
    • subarray

      public static final char[][] subarray(char[][] array, int start, int end)
    • splitOn

      public static final char[][] splitOn(char divider, char[] array)
    • lastIndexOf

      public static final int lastIndexOf(char toBeFound, char[] array)
      Taken from org.aspectj.org.eclipse.jdt.core.compiler.CharOperation
    • indexOf

      public static final int indexOf(char toBeFound, char[] array)
      Taken from org.aspectj.org.eclipse.jdt.core.compiler.CharOperation
    • concat

      public static final char[] concat(char[] first, char[] second)
      Taken from org.aspectj.org.eclipse.jdt.core.compiler.CharOperation
    • equals

      public static final boolean equals(char[] first, char[] second)
      Taken from org.aspectj.org.eclipse.jdt.core.compiler.CharOperation
    • toString

      public static final String toString(char[][] array)
    • concatWith

      public static final char[] concatWith(char[][] array, char separator)
    • hashCode

      public static final int hashCode(char[] array)
    • equals

      public static final boolean equals(char[][] first, char[][] second)
    • replace

      public static final void replace(char[] array, char toBeReplaced, char replacementChar)
      Taken from org.aspectj.org.eclipse.jdt.core.compiler.CharOperation