Toggle navigation
Home
java.lang.Object to org.apache.flink.util.OptionalFailure<java.lang.Object>
No. of Instances - 57
No. of Commits - 1
No. of Projects - {'flink'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Jdk -> Internal
Mapping:
Update Class Instacne Creation
new SerializedValue<Object>(723L)
to
new SerializedValue<>(OptionalFailure.of(723L))
new SerializedValue<Object>("peter")
to
new SerializedValue<>(OptionalFailure.of("peter"))
new SerializedValue<>("testValue")
to
new SerializedValue<>(OptionalFailure.of("testValue"))
Add or Remove Method invocation
deserializeValue
to
getUnchecked
deserializeValue
to
getUnchecked
accumulators.get("testKey").toString()
to
accumulators.get("testKey").get().toString()
get
to
getUnchecked
get
to
getUnchecked
value
to
value.get()
value
to
value.get()
get
to
get
deserializeValue
to
getUnchecked
Cascading Type Change (Similar)
SerializedValue<Object>
to
SerializedValue<OptionalFailure<Object>>