OptionalValidatedByteProperty

open class OptionalValidatedByteProperty(initialValue: Byte?, bean: Any? = null, beanName: String? = null, validation: (ValidatedProperty<Byte?>, Byte?, Byte?) -> Byte?) : ValidatedProperty<Byte?> , OptionalByteProperty

Boilerplate which avoids having to use generics.

Similar to ValidatedByteProperty, but the value can also be null.

Constructors

Link copied to clipboard
constructor(initialValue: Byte?, bean: Any? = null, beanName: String? = null, validation: (ValidatedProperty<Byte?>, Byte?, Byte?) -> Byte?)