class AnyShape extends Shape

Annotations
@JSExportAll()
Linear Supertypes
Shape, NamedDomainElement, Linkable, DomainElement, PlatformSecrets, AmfObjectWrapper, Annotable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AnyShape
  2. Shape
  3. NamedDomainElement
  4. Linkable
  5. DomainElement
  6. PlatformSecrets
  7. AmfObjectWrapper
  8. Annotable
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new AnyShape()
    Annotations
    @JSExportTopLevel( "model.domain.AnyShape" )
  2. new AnyShape(_internal: plugins.domain.shapes.models.AnyShape)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def and: convert.CoreClientConverters.ClientList[Shape]
    Definition Classes
    Shape
  5. def annotations(): Annotations
    Definition Classes
    AmfObjectWrapper → Annotable
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def buildJsonSchema(options: ShapeRenderOptions): String
  8. def buildJsonSchema(): String

    Force a new json schema generation, no matter if the shape was parsed from that kind of expression or if was previously generated.

    Force a new json schema generation, no matter if the shape was parsed from that kind of expression or if was previously generated. Stores the result for futures toJsonSchema invocations. Should use this method when you have mutated this instance

  9. def buildRamlDatatype(): String

    Forces a new RAML Data Type generation, no matter if the shape was parsed from that kind of expression or if was previously generated.

    Forces a new RAML Data Type generation, no matter if the shape was parsed from that kind of expression or if was previously generated. Stores the result for futures toRamlDatatype invocations. Call this method to generate a new RAML Data Type when this instance was mutated. Proxies call to internal AnyShape.toRamlDatatype.

  10. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  11. def customDomainProperties: convert.CoreClientConverters.ClientList[DomainExtension]
    Definition Classes
    DomainElement
  12. def customShapeProperties: convert.CoreClientConverters.ClientList[ShapeExtension]
    Definition Classes
    Shape
  13. def customShapePropertyDefinitions: convert.CoreClientConverters.ClientList[PropertyShape]
    Definition Classes
    Shape
  14. def defaultValue: DataNode
    Definition Classes
    Shape
  15. def defaultValueStr: StrField
    Definition Classes
    Shape
  16. def description: StrField
    Definition Classes
    Shape
  17. def displayName: StrField
    Definition Classes
    Shape
  18. def documentation: CreativeWork
  19. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  21. def examples: ClientList[Example]
  22. def extendsNode: convert.CoreClientConverters.ClientList[DomainElement]
    Definition Classes
    DomainElement
  23. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  24. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  25. def graph(): Graph
    Definition Classes
    DomainElement
  26. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  27. def id: String
    Definition Classes
    DomainElement
  28. def inherits: convert.CoreClientConverters.ClientList[Shape]
    Definition Classes
    Shape
  29. def inlined(): Boolean
  30. def isDefaultEmpty: Boolean

    Aux method to know when the shape is instance only of any shape and it's because was parsed from an empty (or only with example) payload, an not an explicit type def

  31. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  32. def isLink: Boolean
    Definition Classes
    Linkable
  33. def link[T](label: Option[String]): T
    Definition Classes
    Linkable
  34. def linkCopy(): AnyShape
    Definition Classes
    AnyShape → Linkable
  35. def linkLabel: StrField
    Definition Classes
    Linkable
  36. def linkTarget: convert.CoreClientConverters.ClientOption[DomainElement]
    Definition Classes
    Linkable
  37. def name: StrField
    Definition Classes
    Shape → NamedDomainElement
  38. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  39. def not: Shape
    Definition Classes
    Shape
  40. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  41. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  42. def or: convert.CoreClientConverters.ClientList[Shape]
    Definition Classes
    Shape
  43. def parameterValidator(mediaType: String, env: Environment): ClientOption[PayloadValidator]
  44. def parameterValidator(mediaType: String): ClientOption[PayloadValidator]
  45. def payloadValidator(mediaType: String, env: Environment): ClientOption[PayloadValidator]
  46. def payloadValidator(mediaType: String): ClientOption[PayloadValidator]
  47. val platform: Platform
    Definition Classes
    PlatformSecrets
  48. def position: Range
    Definition Classes
    DomainElement
  49. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  50. def toJsonSchema: String

    if the shape was parsed of a json schema, or has been previously generated a new json schema, returns thar value, otherwise generate a new json schema and store the value for futures invocations

  51. def toRamlDatatype: String

    If the shape was parsed of RAML, or a new RAML has been previously generated, returns that value, otherwise generates a new RAML Data Type and stores the value for futures invocations.

    If the shape was parsed of RAML, or a new RAML has been previously generated, returns that value, otherwise generates a new RAML Data Type and stores the value for futures invocations. Proxies call to internal AnyShape.toRamlDatatype.

  52. def toString(): String
    Definition Classes
    AnyRef → Any
  53. def trackedExample(trackId: String): ClientOption[Example]

    trackId

    parent id of the original payload type with simpleinheritance and the searched example.

    returns

    A ClientOption of the original inlined example, or empty if there is not any example with that track information annotated.

  54. def validate(fragment: PayloadFragment): ClientFuture[ValidationReport]
  55. def validate(fragment: PayloadFragment, env: Environment): ClientFuture[ValidationReport]
  56. def validate(payload: String): ClientFuture[ValidationReport]
  57. def validate(payload: String, env: Environment): ClientFuture[ValidationReport]
  58. def validateParameter(payload: String): ClientFuture[ValidationReport]
  59. def validateParameter(payload: String, env: Environment): ClientFuture[ValidationReport]
  60. def values: convert.CoreClientConverters.ClientList[DataNode]
    Definition Classes
    Shape
  61. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  62. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  63. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  64. def withAnd(subShapes: convert.CoreClientConverters.ClientList[Shape]): AnyShape.this.type
    Definition Classes
    Shape
  65. def withCustomDomainProperties(extensions: convert.CoreClientConverters.ClientList[DomainExtension]): AnyShape.this.type
    Definition Classes
    DomainElement
  66. def withCustomShapeProperties(customShapeProperties: convert.CoreClientConverters.ClientList[ShapeExtension]): AnyShape.this.type
    Definition Classes
    Shape
  67. def withCustomShapePropertyDefinition(name: String): PropertyShape
    Definition Classes
    Shape
  68. def withCustomShapePropertyDefinitions(propertyDefinitions: convert.CoreClientConverters.ClientList[PropertyShape]): AnyShape.this.type
    Definition Classes
    Shape
  69. def withDefaultStr(value: String): AnyShape.this.type
    Definition Classes
    Shape
  70. def withDefaultValue(default: DataNode): AnyShape.this.type
    Definition Classes
    Shape
  71. def withDescription(description: String): AnyShape.this.type
    Definition Classes
    Shape
  72. def withDisplayName(name: String): AnyShape.this.type
    Definition Classes
    Shape
  73. def withDocumentation(documentation: CreativeWork): AnyShape.this.type
  74. def withExample(mediaType: String): Example
  75. def withExamples(examples: ClientList[Example]): AnyShape.this.type
  76. def withExtendsNode(extension: convert.CoreClientConverters.ClientList[ParametrizedDeclaration]): AnyShape.this.type
    Definition Classes
    DomainElement
  77. def withId(id: String): AnyShape.this.type
    Definition Classes
    DomainElement
  78. def withInherits(inherits: convert.CoreClientConverters.ClientList[Shape]): AnyShape.this.type
    Definition Classes
    Shape
  79. def withLinkLabel(label: String): AnyShape.this.type
    Definition Classes
    Linkable
  80. def withLinkTarget(target: DomainElement with Linkable): AnyShape.this.type
    Definition Classes
    Linkable
  81. def withName(name: String): AnyShape.this.type
    Definition Classes
    Shape → NamedDomainElement
  82. def withNode(shape: Shape): AnyShape.this.type
    Definition Classes
    Shape
  83. def withOr(subShapes: convert.CoreClientConverters.ClientList[Shape]): AnyShape.this.type
    Definition Classes
    Shape
  84. def withValues(values: convert.CoreClientConverters.ClientList[DataNode]): AnyShape.this.type
    Definition Classes
    Shape
  85. def withXMLSerialization(xmlSerialization: XMLSerializer): AnyShape.this.type
  86. def withXone(subShapes: convert.CoreClientConverters.ClientList[Shape]): AnyShape.this.type
    Definition Classes
    Shape
  87. def xmlSerialization: XMLSerializer
  88. def xone: convert.CoreClientConverters.ClientList[Shape]
    Definition Classes
    Shape

Inherited from Shape

Inherited from NamedDomainElement

Inherited from Linkable

Inherited from DomainElement

Inherited from PlatformSecrets

Inherited from AmfObjectWrapper

Inherited from Annotable

Inherited from AnyRef

Inherited from Any

Ungrouped