net.sf.cglib.util
Class StringSwitcher.Generator

java.lang.Object
  extended by net.sf.cglib.core.AbstractClassGenerator
      extended by net.sf.cglib.util.StringSwitcher.Generator
All Implemented Interfaces:
ClassGenerator
Enclosing class:
StringSwitcher

public static class StringSwitcher.Generator
extends AbstractClassGenerator


Nested Class Summary
 
Nested classes/interfaces inherited from class net.sf.cglib.core.AbstractClassGenerator
AbstractClassGenerator.Source
 
Constructor Summary
StringSwitcher.Generator()
           
 
Method Summary
 StringSwitcher create()
          Generate the StringSwitcher.
protected  Object firstInstance(Class type)
           
 void generateClass(org.objectweb.asm.ClassVisitor v)
           
protected  ClassLoader getDefaultClassLoader()
           
protected  Object nextInstance(Object instance)
           
 void setFixedInput(boolean fixedInput)
          Configure how unknown String keys will be handled.
 void setInts(int[] ints)
          Set the array of integer results.
 void setStrings(String[] strings)
          Set the array of recognized Strings.
 
Methods inherited from class net.sf.cglib.core.AbstractClassGenerator
create, getAttemptLoad, getClassLoader, getClassName, getCurrent, getNamingPolicy, getStrategy, getUseCache, setAttemptLoad, setClassLoader, setNamePrefix, setNamingPolicy, setStrategy, setUseCache
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

StringSwitcher.Generator

public StringSwitcher.Generator()
Method Detail

setStrings

public void setStrings(String[] strings)
Set the array of recognized Strings.

Parameters:
strings - the array of String keys; must be the same length as the value array
See Also:
setInts(int[])

setInts

public void setInts(int[] ints)
Set the array of integer results.

Parameters:
ints - the array of integer results; must be the same length as the key array
See Also:
setStrings(java.lang.String[])

setFixedInput

public void setFixedInput(boolean fixedInput)
Configure how unknown String keys will be handled.

Parameters:
fixedInput - if false, an unknown key will be returned from StringSwitcher.intValue(java.lang.String) as -1; if true, the result will be undefined, and the resulting code will be faster

getDefaultClassLoader

protected ClassLoader getDefaultClassLoader()
Specified by:
getDefaultClassLoader in class AbstractClassGenerator

create

public StringSwitcher create()
Generate the StringSwitcher.


generateClass

public void generateClass(org.objectweb.asm.ClassVisitor v)
                   throws Exception
Throws:
Exception

firstInstance

protected Object firstInstance(Class type)
Specified by:
firstInstance in class AbstractClassGenerator

nextInstance

protected Object nextInstance(Object instance)
Specified by:
nextInstance in class AbstractClassGenerator


Copyright © 2012 Oracle Corporation. All Rights Reserved.