Package com.iizix.api.vs
Enum JavaActorParam.Type
- java.lang.Object
-
- java.lang.Enum<JavaActorParam.Type>
-
- com.iizix.api.vs.JavaActorParam.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<JavaActorParam.Type>
- Enclosing class:
- JavaActorParam
public static enum JavaActorParam.Type extends java.lang.Enum<JavaActorParam.Type>
Type of parameter.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Boolean
Boolean property usingBoolProp
.Integer
Integer property usingIntProp
.String
String property usingStringProp
.Value_BigDecimal
Value_BigInteger
Value_Binary
Value_Boolean
Value_Byte
Value_Double
Value_Duration
Value_Float
Value_Integer
Value_KString
Value_LocalDate
Value_LocalDateTime
Value_LocalTime
Value_Long
Value_MonthDay
Value_OffsetDateTime
Value
propertyValueProp
:Value.Type.OffsetDateTime
, using the value as Java typejava.sql.Timestamp
.Value_OffsetTime
Value_Period
Value_Short
Value_String
Value_XMLDuration
Value_Year
Value_YearMonth
Value_ZonedDateTime
Value
propertyValueProp
:Value.Type.ZonedDateTime
, using the value as Java typejava.sql.Timestamp
.
-
Field Summary
Fields Modifier and Type Field Description java.lang.Class<? extends GProp<?>>
propertyClass
The property class.Value.Type
valueType
Type of value, null ifpropertyClass
is notValueProp
.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JavaActorParam.Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static JavaActorParam.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Boolean
public static final JavaActorParam.Type Boolean
Boolean property usingBoolProp
.
-
String
public static final JavaActorParam.Type String
String property usingStringProp
.
-
Integer
public static final JavaActorParam.Type Integer
Integer property usingIntProp
.
-
Value_BigDecimal
public static final JavaActorParam.Type Value_BigDecimal
-
Value_BigInteger
public static final JavaActorParam.Type Value_BigInteger
-
Value_Binary
public static final JavaActorParam.Type Value_Binary
-
Value_Boolean
public static final JavaActorParam.Type Value_Boolean
-
Value_Byte
public static final JavaActorParam.Type Value_Byte
-
Value_Double
public static final JavaActorParam.Type Value_Double
-
Value_Duration
public static final JavaActorParam.Type Value_Duration
-
Value_Float
public static final JavaActorParam.Type Value_Float
-
Value_Integer
public static final JavaActorParam.Type Value_Integer
-
Value_KString
public static final JavaActorParam.Type Value_KString
-
Value_LocalDateTime
public static final JavaActorParam.Type Value_LocalDateTime
-
Value_LocalDate
public static final JavaActorParam.Type Value_LocalDate
-
Value_LocalTime
public static final JavaActorParam.Type Value_LocalTime
-
Value_Long
public static final JavaActorParam.Type Value_Long
-
Value_MonthDay
public static final JavaActorParam.Type Value_MonthDay
-
Value_OffsetDateTime
public static final JavaActorParam.Type Value_OffsetDateTime
Value
propertyValueProp
:Value.Type.OffsetDateTime
, using the value as Java typejava.sql.Timestamp
.
-
Value_OffsetTime
public static final JavaActorParam.Type Value_OffsetTime
-
Value_Period
public static final JavaActorParam.Type Value_Period
-
Value_Short
public static final JavaActorParam.Type Value_Short
-
Value_String
public static final JavaActorParam.Type Value_String
-
Value_XMLDuration
public static final JavaActorParam.Type Value_XMLDuration
-
Value_YearMonth
public static final JavaActorParam.Type Value_YearMonth
-
Value_Year
public static final JavaActorParam.Type Value_Year
-
Value_ZonedDateTime
public static final JavaActorParam.Type Value_ZonedDateTime
Value
propertyValueProp
:Value.Type.ZonedDateTime
, using the value as Java typejava.sql.Timestamp
.
-
-
Field Detail
-
propertyClass
public final java.lang.Class<? extends GProp<?>> propertyClass
The property class.
-
valueType
public final Value.Type valueType
Type of value, null ifpropertyClass
is notValueProp
.
-
-
Method Detail
-
values
public static JavaActorParam.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 (JavaActorParam.Type c : JavaActorParam.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 JavaActorParam.Type valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-