ValidatedByteProperty

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

Boilerplate which avoids having to use generics. Instead of ValidatedProperty<Byte>, we can use ValidatedByteProperty.

Constructors

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