Package org.eolang
Class Data.ToPhi
- java.lang.Object
-
- org.eolang.Data.ToPhi
-
- Enclosing interface:
- Data
public static final class Data.ToPhi extends Object implements Phi
Makes aPhiout of a primitive Java object, likeStringorInteger.This is more convenient than making EOstring, then making EObytes fill it up with data and then injecting bytes to string. This class is used in Java tests mostly for the sake of brevity. In auto-generated Java code we use EOstring and then wrap it with
PhData.- Since:
- 0.1
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eolang.Data
Data.ToPhi
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidattach(byte[] data)Attach data to the object.Phicopy()Make a copy, leaving it at the same parent.byte[]delta()Take the data.booleanequals(Object obj)Stringforma()Get forma of the phi.inthashCode()Stringlocator()Get code locator of the phi.booleanput(int pos, Phi obj)Put object by position of the attribute.booleanput(String name, Phi obj)Put object by name of the attribute.Phitake(String name)Take object by name of the attribute.StringtoString()StringφTerm()To φ-calculus term, as text.
-
-
-
Constructor Detail
-
ToPhi
public ToPhi(Object obj)
Ctor.- Parameters:
obj- Data
-
-
Method Detail
-
copy
public Phi copy()
Description copied from interface:PhiMake a copy, leaving it at the same parent.
-
take
public Phi take(String name)
Description copied from interface:PhiTake object by name of the attribute.
-
put
public boolean put(int pos, Phi obj)Description copied from interface:PhiPut object by position of the attribute.
-
put
public boolean put(String name, Phi obj)
Description copied from interface:PhiPut object by name of the attribute.
-
attach
public void attach(byte[] data)
Description copied from interface:DataAttach data to the object.
-
-