Package Torello.Java.Additional
Class Ret1<A>
- java.lang.Object
-
- Torello.Java.Additional.RetN
-
- Torello.Java.Additional.Ret1<A>
-
- Type Parameters:
A
- The type of the only member-field ('a'
).
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
public class Ret1<A> extends RetN implements java.io.Serializable, java.lang.Cloneable
This simple generic-class exists mainly for the case where a function or type-parameter needs to return a class that inheritsRetN
, but only has one return-value. Outside of that particular scenario, there isn't much point to aRet1
instance.- See Also:
- Serialized Form
Hi-Lited Source-Code:- View Here: Torello/Java/Additional/Ret1.java
- Open New Browser-Tab: Torello/Java/Additional/Ret1.java
-
-
Field Summary
Serializable ID Modifier and Type Field protected static long
serialVersionUID
Instance Fields Modifier and Type Field A
a
-
-
-
Field Detail
-
serialVersionUID
protected static final long serialVersionUID
This fulfils the SerialVersion UID requirement for all classes that implement Java'sinterface java.io.Serializable
. Using theSerializable
Implementation offered by java is very easy, and can make saving program state when debugging a lot easier. It can also be used in place of more complicated systems like "hibernate" to store data as well.- See Also:
- Constant Field Values
- Code:
- Exact Field Declaration Expression:
protected static final long serialVersionUID = 1;
-
-
Method Detail
-
n
public int n()
Returns'1'
, indicating how many fields are declared by this class.
-
-