jsonforms-kotlin
Toggle table of contents
common
Platform filter
common
Switch theme
Search in API
jsonforms-kotlin
shared
/
com.paligot.jsonforms.kotlin.internal
/
FieldError
Field
Error
sealed
class
FieldError
Inheritors
RequiredFieldError
InvalidValueFieldError
InvalidEnumFieldError
PatternFieldError
MaxLengthFieldError
MinLengthFieldError
MinValueFieldError
MaxValueFieldError
MalformedFieldError
InvalidNotPropertyError
Members
Types
Invalid
Enum
Field
Error
Link copied to clipboard
class
InvalidEnumFieldError
(
val
enum
:
List
<
String
>
,
val
scope
:
String
)
:
FieldError
Invalid
Not
Property
Error
Link copied to clipboard
class
InvalidNotPropertyError
(
val
not
:
Property
,
val
scope
:
String
)
:
FieldError
Invalid
Value
Field
Error
Link copied to clipboard
class
InvalidValueFieldError
(
val
value
:
JsonPrimitive
,
val
scope
:
String
)
:
FieldError
Malformed
Field
Error
Link copied to clipboard
class
MalformedFieldError
(
val
scope
:
String
)
:
FieldError
Max
Length
Field
Error
Link copied to clipboard
class
MaxLengthFieldError
(
val
maxLength
:
Int
,
val
scope
:
String
)
:
FieldError
Max
Value
Field
Error
Link copied to clipboard
class
MaxValueFieldError
(
val
maxValue
:
Int
,
val
scope
:
String
)
:
FieldError
Min
Length
Field
Error
Link copied to clipboard
class
MinLengthFieldError
(
val
minLength
:
Int
,
val
scope
:
String
)
:
FieldError
Min
Value
Field
Error
Link copied to clipboard
class
MinValueFieldError
(
val
minValue
:
Int
,
val
scope
:
String
)
:
FieldError
Pattern
Field
Error
Link copied to clipboard
class
PatternFieldError
(
val
pattern
:
String
,
val
scope
:
String
)
:
FieldError
Required
Field
Error
Link copied to clipboard
class
RequiredFieldError
(
val
scope
:
String
)
:
FieldError
Properties
message
Link copied to clipboard
val
message
:
String
scope
Link copied to clipboard
val
scope
:
String