gov.nasa.arc.brahms.vm.api.common
Interface IPrimitiveType

All Superinterfaces:
IType

public interface IPrimitiveType
extends IType

This interface is an interface to specify primitive types used in the Brahms language. Typed model elements can have as type one of the primitive types int, double, boolean, string, and symbol.


Field Summary
static int BOOLEAN
          Constant to indicate the primitive type boolean
static int DOUBLE
          Constant to indicate the primitive type double
static int INT
          Constant to indicate the primitive type int
static int STRING
          Constant to indicate the primitive type string
static int SYMBOL
          Constant to indicate the primitive type symbol
 
Method Summary
 
Methods inherited from interface gov.nasa.arc.brahms.vm.api.common.IType
getType
 

Field Detail

INT

static final int INT
Constant to indicate the primitive type int

See Also:
Constant Field Values

DOUBLE

static final int DOUBLE
Constant to indicate the primitive type double

See Also:
Constant Field Values

BOOLEAN

static final int BOOLEAN
Constant to indicate the primitive type boolean

See Also:
Constant Field Values

SYMBOL

static final int SYMBOL
Constant to indicate the primitive type symbol

See Also:
Constant Field Values

STRING

static final int STRING
Constant to indicate the primitive type string

See Also:
Constant Field Values