public class SByte extends AbstractSignedInt implements ValueType:
Represents an 8-bit signed integer.
| Modifier and Type | Member | Description |
|---|---|---|
| public static const | MAX_VALUEMAX_VALUE as SByte = 127 |
The greatest value representable by an SByte. |
| public static const | MIN_VALUEMIN_VALUE as SByte = -128 |
The smallest value representable by an SByte. |
| Modifier and Type | Member | Description |
|---|---|---|
| public native | SByteSByte() |
Builds the neutral SByte value (0). |
| public native | SByte | Builds an SByte from a Boolean value (false = 0, true = 1). |
| public native | SByte | Builds an SByte from a character code point. |
| public native | SByte | Builds an SByte from a Double value. |
| public native | SByte | Builds an SByte from a Float value. |
| public native | SByte | Builds an SByte from a signed 32-bit integer. |
| public native | SByte | Builds an SByte from a signed 64-bit integer. |
| public native | SByteSByte(value: String) throws BadValueException |
Builds an SByte from a textual representation. |
| public native | SByte | Builds an SByte from an unsigned 32-bit integer. |
| public native | SByte | Builds an SByte from an unsigned 64-bit integer. |
| Modifier and Type | Member | Description |
|---|---|---|
| public override | toStringtoString() as String: |
Converts this value to its textual representation. |
| public static | tryParse | Parses an SByte value from text. |