Class

org.apache.daffodil.processors

SimpleTypeRuntimeData

Related Doc: package processors

Permalink

final class SimpleTypeRuntimeData extends NonTermRuntimeData

Linear Supertypes
NonTermRuntimeData, PreSerialization, Serializable, Serializable, RuntimeData, HasSchemaFileLocation, LookupLocation, LocationInSchemaFile, ResolvesQNames, ImplementsThrowsSDE, ThrowsSDE, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SimpleTypeRuntimeData
  2. NonTermRuntimeData
  3. PreSerialization
  4. Serializable
  5. Serializable
  6. RuntimeData
  7. HasSchemaFileLocation
  8. LookupLocation
  9. LocationInSchemaFile
  10. ResolvesQNames
  11. ImplementsThrowsSDE
  12. ThrowsSDE
  13. AnyRef
  14. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SimpleTypeRuntimeData(variableMapArg: ⇒ VariableMap, schemaFileLocationArg: ⇒ SchemaFileLocation, diagnosticDebugNameArg: ⇒ String, pathArg: ⇒ String, namespacesArg: ⇒ NamespaceBinding, primTypeArg: ⇒ PrimType, noFacetChecksArg: ⇒ Boolean, patternValuesArg: ⇒ Seq[FacetValueR], enumerationValuesArg: ⇒ Option[String], minLengthArg: ⇒ Option[BigDecimal], maxLengthArg: ⇒ Option[BigDecimal], minInclusiveArg: ⇒ Option[BigDecimal], maxInclusiveArg: ⇒ Option[BigDecimal], minExclusiveArg: ⇒ Option[BigDecimal], maxExclusiveArg: ⇒ Option[BigDecimal], totalDigitsArg: ⇒ Option[BigDecimal], fractionDigitsArg: ⇒ Option[BigDecimal], unionMemberTypesArg: ⇒ Seq[SimpleTypeRuntimeData], tunableArg: ⇒ DaffodilTunables)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def NoAnnotationContext: Option[SchemaFileLocation]

    Permalink
    Definition Classes
    ImplementsThrowsSDE
  5. def SDE(id: String, args: Any*): Nothing

    Permalink
    Definition Classes
    ImplementsThrowsSDE → ThrowsSDE
  6. final def SDE(th: Throwable): Nothing

    Permalink
    Definition Classes
    ThrowsSDE
  7. def ThrowSDE: PartialFunction[Throwable, Nothing]

    Permalink
    Definition Classes
    ThrowsSDE
  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def columnDescription: String

    Permalink
    Definition Classes
    HasSchemaFileLocation → LocationInSchemaFile
  11. lazy val diagnosticDebugName: String

    Permalink
    Definition Classes
    NonTermRuntimeDataRuntimeData
  12. lazy val enumerationValues: Option[String]

    Permalink
  13. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  15. def executeCheck(currentElement: DISimple): OKOrError

    Permalink

    This recursively walks down a tree of restriction/union types.

    This recursively walks down a tree of restriction/union types.

    For each restriction, it checks facets. For each union, it stops at the first things satisfied, and sets the unionMember in the infoset element, which provides DFDL's unionMemberSchema functionality.

    Note that we don't pre-flatten unions into flat lists. We could but since a union can be a restriction derived from a union, and within that union can be other restrictions derived from other unions, we'd have to massage around the facet checking (push-down) to the "leaf level" types of the union, and that would result in them being checked redundantly, and potentially make diagnostics harder because the transformed type wouldn't match the written DFDL schema's structure.

    Better to just walk the nest recursively.

  16. def executeFacetCheck(currentElement: DISimple): OKOrError

    Permalink

    Performs the constraint checks using information contained within the PState object.

    Performs the constraint checks using information contained within the PState object.

    returns

    a Unit on success, String (message) on failure.

  17. def fileDescription: String

    Permalink
    Definition Classes
    HasSchemaFileLocation → LocationInSchemaFile
  18. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. lazy val fractionDigits: Option[BigDecimal]

    Permalink
  20. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  21. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  22. lazy val immediateEnclosingElementRuntimeData: Option[ElementRuntimeData]

    Permalink
    Definition Classes
    NonTermRuntimeDataRuntimeData
  23. lazy val immediateEnclosingTermRuntimeData: Maybe[TermRuntimeData]

    Permalink
    Definition Classes
    NonTermRuntimeDataRuntimeData
  24. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  25. def lineDescription: String

    Permalink
    Definition Classes
    HasSchemaFileLocation → LocationInSchemaFile
  26. def locationDescription: String

    Permalink
    Definition Classes
    HasSchemaFileLocation → LocationInSchemaFile
  27. def matchers: (Seq[Matcher], Option[Matcher])

    Permalink

    These are creators of regex pattern matcher objects.

    These are creators of regex pattern matcher objects. we want to avoid allocating Matchers, so this is thread-safe in terms of allocating and returning the matchers, and we need this generally because matchers are stateful so cannot be shared across threads.

  28. lazy val maxExclusive: Option[BigDecimal]

    Permalink
  29. lazy val maxInclusive: Option[BigDecimal]

    Permalink
  30. lazy val maxLength: Option[BigDecimal]

    Permalink
  31. val me: Class[_ <: PreSerialization]

    Permalink
    Definition Classes
    PreSerialization
  32. lazy val minExclusive: Option[BigDecimal]

    Permalink
  33. lazy val minInclusive: Option[BigDecimal]

    Permalink
  34. lazy val minLength: Option[BigDecimal]

    Permalink
  35. lazy val namespaces: NamespaceBinding

    Permalink
    Definition Classes
    NonTermRuntimeDataRuntimeData → ResolvesQNames
  36. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  37. lazy val noFacetChecks: Boolean

    Permalink
  38. final def notYetImplemented(msg: String, args: Any*): Nothing

    Permalink
    Definition Classes
    ThrowsSDE
  39. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  40. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  41. lazy val path: String

    Permalink
    Definition Classes
    NonTermRuntimeDataRuntimeData
  42. lazy val patternValues: Seq[FacetValueR]

    Permalink
  43. def preSerialization: Unit

    Permalink
    Definition Classes
    SimpleTypeRuntimeDataNonTermRuntimeData → PreSerialization
  44. lazy val primType: PrimType

    Permalink
  45. def qNameForProperty(local: String, ns: NS): GlobalQName

    Permalink
    Definition Classes
    ResolvesQNames
  46. def removePrefix(prefixedValue: String): String

    Permalink
    Definition Classes
    ResolvesQNames
  47. def resolveQName(qnString: String): RefQName

    Permalink
    Definition Classes
    ResolvesQNames
  48. final def schemaDefinitionError(str: String, args: Any*): Nothing

    Permalink
    Definition Classes
    ThrowsSDE
  49. final macro def schemaDefinitionUnless(testThatWillThrowIfFalse: Boolean, str: String, args: Any*): Unit

    Permalink
    Definition Classes
    ThrowsSDE
  50. final macro def schemaDefinitionWhen(testThatWillThrowIfTrue: Boolean, str: String, args: Any*): Unit

    Permalink
    Definition Classes
    ThrowsSDE
  51. lazy val schemaFileLocation: SchemaFileLocation

    Permalink
    Definition Classes
    NonTermRuntimeDataRuntimeData → HasSchemaFileLocation → ThrowsSDE
  52. final def serializeObject(out: ObjectOutputStream): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    PreSerialization
  53. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  54. def toString(): String

    Permalink
    Definition Classes
    RuntimeData → AnyRef → Any
  55. final def toss(th: Throwable): Nothing

    Permalink
    Definition Classes
    ThrowsSDE
  56. lazy val totalDigits: Option[BigDecimal]

    Permalink
  57. lazy val tunable: DaffodilTunables

    Permalink
    Definition Classes
    NonTermRuntimeDataRuntimeData → ResolvesQNames
  58. lazy val unionMemberTypes: Seq[SimpleTypeRuntimeData]

    Permalink
  59. lazy val variableMap: VariableMap

    Permalink
    Definition Classes
    NonTermRuntimeDataRuntimeData
  60. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  61. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  62. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from NonTermRuntimeData

Inherited from PreSerialization

Inherited from Serializable

Inherited from Serializable

Inherited from RuntimeData

Inherited from HasSchemaFileLocation

Inherited from LookupLocation

Inherited from LocationInSchemaFile

Inherited from ResolvesQNames

Inherited from ImplementsThrowsSDE

Inherited from ThrowsSDE

Inherited from AnyRef

Inherited from Any

Ungrouped