Enum TYPE
- java.lang.Object
-
- java.lang.Enum<TYPE>
-
- org.logdoc.fairhttp.service.api.helpers.endpoint.TYPE
-
- All Implemented Interfaces:
Serializable,Comparable<TYPE>
public enum TYPE extends Enum<TYPE>
- Author:
- Denis Danilin | me@loslobos.ru 26.02.2023 15:18 FairHttpService ☭ sweat and blood
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TYPEofSign(String sign)ObjectstringAs(String v, boolean optional, String defValue)static TYPEvalueOf(String name)Returns the enum constant of this type with the specified name.static TYPE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Character
public static final TYPE Character
-
chr
public static final TYPE chr
-
Integer
public static final TYPE Integer
-
intgr
public static final TYPE intgr
-
Boolean
public static final TYPE Boolean
-
bool
public static final TYPE bool
-
Byte
public static final TYPE Byte
-
byt
public static final TYPE byt
-
Short
public static final TYPE Short
-
shrt
public static final TYPE shrt
-
Long
public static final TYPE Long
-
lng
public static final TYPE lng
-
Double
public static final TYPE Double
-
dbl
public static final TYPE dbl
-
Float
public static final TYPE Float
-
flt
public static final TYPE flt
-
String
public static final TYPE String
-
Request
public static final TYPE Request
-
Custom
public static final TYPE Custom
-
-
Method Detail
-
values
public static TYPE[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TYPE c : TYPE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TYPE valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-