Interface ReadableByteValue
-
- All Superinterfaces:
ReadableNumberValue<Byte>,ReadableSimpleValue<Byte>,ReadableTypedValue<Byte>,ReadableValue<Byte>,Supplier<Byte>
- All Known Subinterfaces:
ByteExpression,ObservableByteValue,WritableByteValue
- All Known Implementing Classes:
ByteBinding
public interface ReadableByteValue extends ReadableNumberValue<Byte>
- Since:
- 1.0.0
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default BytegetSafe()default bytegetValue()default Class<Byte>getValueClass()-
Methods inherited from interface io.github.mmm.value.observable.number.ReadableNumberValue
byteValue, doubleValue, floatValue, intValue, longValue, shortValue
-
Methods inherited from interface io.github.mmm.value.observable.object.ReadableSimpleValue
getAsString
-
Methods inherited from interface io.github.mmm.value.ReadableValue
get
-
-
-
-
Method Detail
-
getValueClass
default Class<Byte> getValueClass()
- Specified by:
getValueClassin interfaceReadableTypedValue<Byte>
-
getValue
default byte getValue()
- Returns:
- the current value as primitive. Will be
0if undefined.
-
getSafe
default Byte getSafe()
- Specified by:
getSafein interfaceReadableValue<Byte>
-
-