Class ValueExp

java.lang.Object
com.sun.msv.grammar.Expression
com.sun.msv.grammar.ValueExp
All Implemented Interfaces:
DataOrValueExp, Serializable

public final class ValueExp extends Expression implements DataOrValueExp
Expression that matchs a particular value of a Datatype.
See Also:
  • Field Details

    • dt

      public final org.relaxng.datatype.Datatype dt
      Datatype object that is used to test the equality.
    • value

      public final Object value
      This expression matches this value only.
    • name

      public final StringPair name
      name of this datatype. The value of this field is not considered as significant. When two TypedStringExps share the same Datatype object, then they are unified even if they have different names.
    • serialVersionUID

      private static final long serialVersionUID
      See Also:
  • Constructor Details

    • ValueExp

      protected ValueExp(org.relaxng.datatype.Datatype dt, StringPair typeName, Object value)
  • Method Details