Uses of Class
org.holtz.zoe.zoel.Register

Packages that use Register
org.holtz.zoe A Zoe World with evolvable Bugs controlled by Genes coded as mutating Zoel programs.
 
org.holtz.zoe.zoel A Turing-complete mutatable programming language featuring block statements, a stack, a heap, registers of sensory data, and operators to perform actions in the Zoe World.
 
 

Uses of Register in org.holtz.zoe
 

Methods in org.holtz.zoe with parameters of type Register
 Literal ZObject.evaluate(Register reg)
           
 

Uses of Register in org.holtz.zoe.zoel
 

Fields in org.holtz.zoe.zoel declared as Register
 Register RegisterReference.reg
           
 

Methods in org.holtz.zoe.zoel that return Register
static Register RegisterReference.best(java.util.Random random)
           
static Register Register.fromString(java.lang.String str)
           
static Register Register.random(java.util.Random random)
           
static Register Register.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Register[] Register.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Constructors in org.holtz.zoe.zoel with parameters of type Register
RegisterReference(Register theReg)
           
RegisterReference(Register theReg, RegisterReference.Whose theWho)