Class ExecutionProperty<T extends java.io.Serializable>
- java.lang.Object
-
- org.apache.nemo.common.ir.executionproperty.ExecutionProperty<T>
-
- Type Parameters:
T
- Type of the value.
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
EdgeExecutionProperty
,VertexExecutionProperty
public abstract class ExecutionProperty<T extends java.io.Serializable> extends java.lang.Object implements java.io.Serializable
An abstract class for each execution factors.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExecutionProperty(T value)
Default constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
T
getValue()
int
hashCode()
java.lang.String
toString()
-
-
-
Constructor Detail
-
ExecutionProperty
public ExecutionProperty(T value)
Default constructor.- Parameters:
value
- value of the ExecutionProperty.
-
-
Method Detail
-
getValue
public final T getValue()
- Returns:
- the value of the execution property.
-
equals
public final boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public final int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public final java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-