public class Types extends Object
| Constructor and Description |
|---|
Types() |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
isBoolean(String value)
Checks if a value is a boolean or not.
|
static boolean |
isDate(String value)
Checks if a value is a date or not.
|
static boolean |
isDouble(String value)
Checks if a value is a double or not.
|
static boolean |
isEmpty(String value)
Checks if a value is a empty or not.
|
static boolean |
isInteger(String value)
Checks if a value is a integer or not.
|
static boolean |
isNumber(String value)
Checks if a value is a number or not.
|
static boolean |
isTime(String value)
Checks if a value is a datetime or not.
|
public static boolean isDate(String value)
value - representing date.public static boolean isTime(String value)
value - representing date time.public static boolean isNumber(String value)
value - representing a number.public static boolean isBoolean(String value)
value - representing a boolean.public static boolean isEmpty(String value)
value - representing a empty.public static boolean isDouble(String value)
value - representing a double.public static boolean isInteger(String value)
value - representing a integer.Copyright © 2024 CDAP Licensed under the Apache License, Version 2.0.