object ValidatorUtil
An object that provides utilities for validation/validators.
- Alphabetic
- By Inheritance
- ValidatorUtil
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def isHankakuEiSujiKigo(c: Char): Boolean
Return
true
if the given characterc
is a single-byte character,false
otherwise.Return
true
if the given characterc
is a single-byte character,false
otherwise.Details
This method treats the specific Unicode Block Range as a single-byte character. The range is Basic Latin (0000..007f) and Latin-1 Supplement (0080..00FF), which is compatible with ISO 8859-1. You can see the Unicode block range in Official Unicode Consortium code chart
- c
the character that is checked
- returns
true
if the character satisfies the condition,false
otherwise.
- def isHankakuKana(c: Char): Boolean
Return
true
if the given characterc
is a Halfwidth Katakana,false
otherwise.Return
true
if the given characterc
is a Halfwidth Katakana,false
otherwise.Details
This method treats the specific Unicode Block Range (FF61..FF9F) as a Halfwidth Katakana. You can see the Unicode block range in Official Unicode Consortium code chart
- c
the character that is checked
- returns
true
if the character satisfies the condition,false
otherwise.
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isLengthRange(value: String, min: Int = 0, max: Int = Integer.MAX_VALUE): Boolean
Return
true
if the length of the given stringvalue
is in the range [min
,max
] (both inclusive),false
otherwise.Return
true
if the length of the given stringvalue
is in the range [min
,max
] (both inclusive),false
otherwise.- value
the string in which length is used
- min
the min of the range
- max
the max of the range
- returns
true
if thevalue
satisfies the condition,false
otherwise.
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()