Class BytecodeObject
- java.lang.Object
-
- org.eolang.jeo.representation.bytecode.BytecodeObject
-
public final class BytecodeObject extends Object
Bytecode value. Represents a typed value in bytecode format.- Since:
- 0.6
-
-
Constructor Summary
Constructors Constructor Description BytecodeObject(Object value)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
encode(Codec codec)
Retrieve the bytes of the value.String
type()
Retrieve the type of the value.Object
value()
Retrieve the value.
-
-
-
Constructor Detail
-
BytecodeObject
public BytecodeObject(Object value)
Constructor.- Parameters:
value
- Value.
-
-