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 aPhi
out of a primitive Java object, likeString
orInteger
.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 do:
Phi bytes = Phi.Φ.take("org.eolang.bytes").copy(); Phi attached = new PhWith(bytes, 0, new byte[] {...}); Phi str = Phi.Φ.take("org.eolang.string").copy(); Phi applied = new PhWith(str, 0, attached); return applied;
- 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 Phi
copy()
Make a copy, leaving it at the same parent.byte[]
delta()
Take the data.boolean
equals(Object obj)
String
forma()
Get forma of the phi.int
hashCode()
boolean
hasRho()
Returns true if object has bound rho attribute.String
locator()
Get code locator of the phi.void
put(int pos, Phi obj)
Put object by position of the attribute.void
put(String name, Phi obj)
Put object by name of the attribute.Phi
take(String name)
Take object by name of the attribute.
-
-
-
Constructor Detail
-
ToPhi
public ToPhi(Object obj)
Ctor.- Parameters:
obj
- Data
-
-
Method Detail
-
copy
public Phi copy()
Description copied from interface:Phi
Make a copy, leaving it at the same parent.
-
hasRho
public boolean hasRho()
Description copied from interface:Phi
Returns true if object has bound rho attribute.
-
take
public Phi take(String name)
Description copied from interface:Phi
Take object by name of the attribute.
-
put
public void put(int pos, Phi obj)
Description copied from interface:Phi
Put object by position of the attribute.
-
put
public void put(String name, Phi obj)
Description copied from interface:Phi
Put object by name of the attribute.
-
-