Module java4ever.binding
Package tech.deplant.java4ever.binding
Record Class Boc.BuilderOp.BitString
java.lang.Object
java.lang.Record
tech.deplant.java4ever.binding.Boc.BuilderOp.BitString
- Record Components:
value
- Contains hexadecimal string representation: - Can end with `_` tag. - Can be prefixed with `x` or `X`. - Can be prefixed with `x{` or `X{` and ended with `}`. Contains binary string represented as a sequence of `0` and `1` prefixed with `n` or `N`. Examples: `1AB`, `x1ab`, `X1AB`, `x{1abc}`, `X{1ABC}` `2D9_`, `x2D9_`, `X2D9_`, `x{2D9_}`, `X{2D9_}` `n00101101100`, `N00101101100` Bit string content using bitstring notation. See `TON VM specification` 1.0.
- All Implemented Interfaces:
Boc.BuilderOp
- Enclosing interface:
Boc.BuilderOp
Append bit string to cell data.
-
Nested Class Summary
Nested classes/interfaces inherited from interface tech.deplant.java4ever.binding.Boc.BuilderOp
Boc.BuilderOp.Address, Boc.BuilderOp.BitString, Boc.BuilderOp.Cell, Boc.BuilderOp.CellBoc, Boc.BuilderOp.Integer
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.type()
value()
Returns the value of thevalue
record component.
-
Constructor Details
-
BitString
-
-
Method Details
-
type
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
value
-