Follow the links below to browse sample Javadoc for MJ classes and tools, including the MJ Runtime Library.

 

Package: com.arsi.mj.variable.named  previous next contents

The named package contains MJ variable classes and interfaces with an identity similar to named MAPPER variables.

Classes and Interfaces
INamedVariable Defines a variable that is identified by a name.
MJNamedDecimal Represents a named, decimal MJ variable.
MJNamedFloat Represents a named, floating point MJ variable.
MJNamedInteger Represents a named, integer MJ variable.
MJNamedString Represents a named, string MJ variable.

Interface: INamedVariable   next package

Defines a variable that is identified by a name.
public interface com.arsi.mj.variable.named.INamedVariable
  extends com.arsi.mj.variable.IVariableIdentity
Methods
Get name of this named variable.
Returns:
name of variable.
public java.lang.String getVariableName()

Class: MJNamedDecimal   previous next package

Represents a named, decimal MJ variable.
public class com.arsi.mj.variable.named.MJNamedDecimal
  extends com.arsi.mj.variable.MJDecimal
  implements com.arsi.mj.variable.named.INamedVariable
Constructors
public MJNamedDecimal(java.lang.String aVarname, com.arsi.mj.VariableScope aScope, int aVarsize, int aVarscale)
public MJNamedDecimal(java.lang.String aVarname, com.arsi.mj.VariableScope aScope, int aVarsize, int aVarscale, java.math.BigDecimal aNumber)
public MJNamedDecimal(java.lang.String aVarname, com.arsi.mj.VariableScope aScope, int aVarsize, int aVarscale, java.util.EnumSet someOptions, java.lang.String aString)
Methods
public java.lang.String getVariableName()

Class: MJNamedFloat   previous next package

Represents a named, floating point MJ variable.
public class com.arsi.mj.variable.named.MJNamedFloat
  extends com.arsi.mj.variable.MJFloat
  implements com.arsi.mj.variable.named.INamedVariable
Constructors
public MJNamedFloat(java.lang.String aVarname, com.arsi.mj.VariableScope aScope, int aVarsize, int aVarscale)
public MJNamedFloat(java.lang.String aVarname, com.arsi.mj.VariableScope aScope, int aVarsize, int aVarscale, java.lang.Double aNumber)
public MJNamedFloat(java.lang.String aVarname, com.arsi.mj.VariableScope aScope, int aVarsize, int aVarscale, java.util.EnumSet someOptions, java.lang.String aString)
Methods
public java.lang.String getVariableName()

Class: MJNamedInteger   previous next package

Represents a named, integer MJ variable.
public class com.arsi.mj.variable.named.MJNamedInteger
  extends com.arsi.mj.variable.MJInteger
  implements com.arsi.mj.variable.named.INamedVariable
Constructors
public MJNamedInteger(java.lang.String aVarname, com.arsi.mj.VariableScope aScope, int aVarsize)
public MJNamedInteger(java.lang.String aVarname, com.arsi.mj.VariableScope aScope, int aVarsize, java.util.EnumSet someOptions, java.lang.String aString)
public MJNamedInteger(java.lang.String aVarname, com.arsi.mj.VariableScope aScope, int aVarsize, java.lang.Long aNumber)
Methods
public java.lang.String getVariableName()

Class: MJNamedString   previous package

Represents a named, string MJ variable.
public class com.arsi.mj.variable.named.MJNamedString
  extends com.arsi.mj.variable.MJString
  implements com.arsi.mj.variable.named.INamedVariable
Constructors
public MJNamedString(java.lang.String aVarname, com.arsi.mj.VariableScope aScope, com.arsi.mj.maprpt.lexer.ptree.cmd.MaprptVariableType aVartype, int aVarsize)
public MJNamedString(java.lang.String aVarname, com.arsi.mj.VariableScope aScope, com.arsi.mj.maprpt.lexer.ptree.cmd.MaprptVariableType aVartype, int aVarsize, java.util.EnumSet someOptions, byte someBytes)
public MJNamedString(java.lang.String aVarname, com.arsi.mj.VariableScope aScope, com.arsi.mj.maprpt.lexer.ptree.cmd.MaprptVariableType aVartype, int aVarsize, java.util.EnumSet someOptions, byte someBytes, java.nio.charset.Charset aCharset)
  throws java.io.UnsupportedEncodingException
public MJNamedString(java.lang.String aVarname, com.arsi.mj.VariableScope aScope, com.arsi.mj.maprpt.lexer.ptree.cmd.MaprptVariableType aVartype, int aVarsize, java.util.EnumSet someOptions, byte someBytes, int anOffset, int aCount)
  throws java.lang.IndexOutOfBoundsException
public MJNamedString(java.lang.String aVarname, com.arsi.mj.VariableScope aScope, com.arsi.mj.maprpt.lexer.ptree.cmd.MaprptVariableType aVartype, int aVarsize, java.util.EnumSet someOptions, byte someBytes, int anOffset, int aCount, java.nio.charset.Charset aCharset)
  throws java.lang.IndexOutOfBoundsException, java.io.UnsupportedEncodingException
public MJNamedString(java.lang.String aVarname, com.arsi.mj.VariableScope aScope, com.arsi.mj.maprpt.lexer.ptree.cmd.MaprptVariableType aVartype, int aVarsize, java.util.EnumSet someOptions, byte someBytes, int anOffset, int aCount, java.lang.String aCharsetName)
  throws java.lang.IndexOutOfBoundsException, java.io.UnsupportedEncodingException
public MJNamedString(java.lang.String aVarname, com.arsi.mj.VariableScope aScope, com.arsi.mj.maprpt.lexer.ptree.cmd.MaprptVariableType aVartype, int aVarsize, java.util.EnumSet someOptions, byte someBytes, java.lang.String aCharsetName)
  throws java.io.UnsupportedEncodingException
public MJNamedString(java.lang.String aVarname, com.arsi.mj.VariableScope aScope, com.arsi.mj.maprpt.lexer.ptree.cmd.MaprptVariableType aVartype, int aVarsize, java.util.EnumSet someOptions, char someChars)
public MJNamedString(java.lang.String aVarname, com.arsi.mj.VariableScope aScope, com.arsi.mj.maprpt.lexer.ptree.cmd.MaprptVariableType aVartype, int aVarsize, java.util.EnumSet someOptions, char someChars, int anOffset, int aCount)
  throws java.lang.IndexOutOfBoundsException
public MJNamedString(java.lang.String aVarname, com.arsi.mj.VariableScope aScope, com.arsi.mj.maprpt.lexer.ptree.cmd.MaprptVariableType aVartype, int aVarsize, java.util.EnumSet someOptions, java.lang.String aString)
public MJNamedString(java.lang.String aVarname, com.arsi.mj.VariableScope aScope, com.arsi.mj.maprpt.lexer.ptree.cmd.MaprptVariableType aVartype, int aVarsize, java.util.EnumSet someOptions, java.lang.StringBuffer aBuf)
public MJNamedString(java.lang.String aVarname, com.arsi.mj.VariableScope aScope, com.arsi.mj.maprpt.lexer.ptree.cmd.MaprptVariableType aVartype, int aVarsize, java.util.EnumSet someOptions, java.lang.StringBuilder aBuf)
Methods
public java.lang.String getVariableName()