in.specmatic.core.pattern.NodeOccurrence.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of specmatic-core Show documentation
Show all versions of specmatic-core Show documentation
Turn your contracts into executable specifications. Contract Driven Development - Collaboratively Design & Independently Deploy MicroServices & MicroFrontends.
Deprecation Notice for group ID "in.specmatic"
******************************************************************************************************
Updates for "specmatic-core" will no longer be available under the deprecated group ID "in.specmatic".
Please update your dependencies to use the new group ID "io.specmatic".
******************************************************************************************************
The newest version!
package `in`.specmatic.core.pattern
import `in`.specmatic.core.Result
enum class NodeOccurrence {
Multiple {
override fun encompasses(otherTypeOccurrence: NodeOccurrence): Result {
return when(otherTypeOccurrence) {
Optional, Multiple -> Result.Success()
else -> Result.Failure("This node $description whereas the other ${otherTypeOccurrence.description}.")
}
}
override val description: String = "may occur 0 or more times"
},
Optional {
override fun encompasses(otherTypeOccurrence: NodeOccurrence): Result {
return when(otherTypeOccurrence) {
Once, Optional -> Result.Success()
else -> Result.Failure("This node $description whereas the other ${otherTypeOccurrence.description}.")
}
}
override val description: String = "is optional"
},
Once {
override fun encompasses(otherTypeOccurrence: NodeOccurrence): Result {
return when(otherTypeOccurrence) {
Once -> Result.Success()
else -> Result.Failure("This node $description whereas the other ${otherTypeOccurrence.description}.")
}
}
override val description: String = "must occur"
};
abstract fun encompasses(otherTypeOccurrence: NodeOccurrence): Result
abstract val description: String
}