Interface IIntegerValueDescriptor
-
- All Superinterfaces:
IValueDescriptor<Number,IIntegerValueBuilder>,Serializable
public interface IIntegerValueDescriptor extends IValueDescriptor<Number,IIntegerValueBuilder>
AIValueDescriptorfor an integer value. The value must be a 64-bit integer. Optionally, it can be restricted to a certain range.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default EValueTypegetBaseType()default Class<?>getJavaClass()com.google.common.collect.Range<Long>getRange()-
Methods inherited from interface de.xima.fc.interfaces.workflow.value.IValueDescriptor
acceptsValue, asBoolean, asConst, asFloat, asInteger, asList, asMap, asNull, asRecord, asString, asTuple, asUnion, asVoid, builder, getDefaultValue, getDescription, getFullType, getKnownProperties, is, unwrap
-
-
-
-
Method Detail
-
getBaseType
default EValueType getBaseType()
- Specified by:
getBaseTypein interfaceIValueDescriptor<Number,IIntegerValueBuilder>- Returns:
- The basic type of value described by this value descriptor.
-
getJavaClass
default Class<?> getJavaClass()
- Specified by:
getJavaClassin interfaceIValueDescriptor<Number,IIntegerValueBuilder>- Returns:
- The Java class of the values described by this descriptor.
-
getRange
com.google.common.collect.Range<Long> getRange()
- Returns:
- Allowed range of the integer value.
-
-