Class Field

java.lang.Object
  |
  +--Field

public class Field
extends java.lang.Object

This class is used to store constant values associated with the VRML field types. You can use the constants to check if a WF3DField is of the correct type. To see if a WF3DField object represent a VRML field of type SFBool you would for instance do:
if (myField.type==Field.SFBool) do something...


Field Summary
static int MFColor
          The VRML field type MFColor
static int MFFloat
          The VRML field type MFFloat
static int MFImage
          The VRML field type MFImage
static int MFInt32
          The VRML field type MFInt32
static int MFNode
          The VRML field type MFNode
static int MFRotation
          The VRML field type MFRotation
static int MFString
          The VRML field type MFString
static int MFTime
          The VRML field type MFTime
static int MFVec2f
          The VRML field type MFVec2f
static int MFVec3f
          The VRML field type MFVec3f
static int SFBool
          The VRML field type SFBool
static int SFColor
          The VRML field type SFColor
static int SFFloat
          The VRML field type SFFloat
static int SFImage
          The VRML field type SFImage
static int SFInt32
          The VRML field type SFInt32
static int SFNode
          The VRML field type SFNode
static int SFRotation
          The VRML field type SFRotation
static int SFString
          The VRML field type SFString
static int SFTime
          The VRML field type SFTime
static int SFVec2f
          The VRML field type SFVec2f
static int SFVec3f
          The VRML field type SFVec3f
 
Constructor Summary
Field()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

SFBool

public static final int SFBool
The VRML field type SFBool

See Also:
Constant Field Values

SFString

public static final int SFString
The VRML field type SFString

See Also:
Constant Field Values

SFInt32

public static final int SFInt32
The VRML field type SFInt32

See Also:
Constant Field Values

SFNode

public static final int SFNode
The VRML field type SFNode

See Also:
Constant Field Values

SFImage

public static final int SFImage
The VRML field type SFImage

See Also:
Constant Field Values

SFRotation

public static final int SFRotation
The VRML field type SFRotation

See Also:
Constant Field Values

SFColor

public static final int SFColor
The VRML field type SFColor

See Also:
Constant Field Values

SFFloat

public static final int SFFloat
The VRML field type SFFloat

See Also:
Constant Field Values

SFTime

public static final int SFTime
The VRML field type SFTime

See Also:
Constant Field Values

SFVec2f

public static final int SFVec2f
The VRML field type SFVec2f

See Also:
Constant Field Values

SFVec3f

public static final int SFVec3f
The VRML field type SFVec3f

See Also:
Constant Field Values

MFString

public static final int MFString
The VRML field type MFString

See Also:
Constant Field Values

MFInt32

public static final int MFInt32
The VRML field type MFInt32

See Also:
Constant Field Values

MFNode

public static final int MFNode
The VRML field type MFNode

See Also:
Constant Field Values

MFImage

public static final int MFImage
The VRML field type MFImage

See Also:
Constant Field Values

MFRotation

public static final int MFRotation
The VRML field type MFRotation

See Also:
Constant Field Values

MFColor

public static final int MFColor
The VRML field type MFColor

See Also:
Constant Field Values

MFFloat

public static final int MFFloat
The VRML field type MFFloat

See Also:
Constant Field Values

MFTime

public static final int MFTime
The VRML field type MFTime

See Also:
Constant Field Values

MFVec2f

public static final int MFVec2f
The VRML field type MFVec2f

See Also:
Constant Field Values

MFVec3f

public static final int MFVec3f
The VRML field type MFVec3f

See Also:
Constant Field Values
Constructor Detail

Field

public Field()