org.aspectj.asm.internal
Class CharOperation

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

public class CharOperation
extends java.lang.Object

Taken from org.aspectj.org.eclipse.jdt.core.compiler.CharOperation


Field Summary
static char[] NO_CHAR
           
static char[][] NO_CHAR_CHAR
           
 
Constructor Summary
CharOperation()
           
 
Method Summary
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 java.lang.String toString(char[][] array)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

NO_CHAR_CHAR

public static final char[][] NO_CHAR_CHAR

NO_CHAR

public static final char[] NO_CHAR
Constructor Detail

CharOperation

public CharOperation()
Method Detail

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 java.lang.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