Package org.eolang
Interface Data<T>
-
- Type Parameters:
T
- Data type.
- All Known Implementing Classes:
Data.Once
,Data.Value
public interface Data<T>
A data container.- Since:
- 0.1
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
Data.Once<T>
Data being returned only once, from encapsulated object.static class
Data.ToPhi
static class
Data.Value<T>
A single value asPhi
.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
take()
Take the data.
-
-
-
Method Detail
-
take
T take()
Take the data.- Returns:
- The data
-
-