Toggle navigation
Home
com.speedment.common.function.ByteUnaryOperator to java.util.function.IntUnaryOperator
No. of Instances - 1
No. of Commits - 1
No. of Projects - {'speedment'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Internal -> Jdk
Mapping:
Cascading Type Change (Similar)
ToByteMapper<T,ToByte<T>,ByteUnaryOperator>
to
ToIntMapper<T,ToInt<T>,IntUnaryOperator>
byte
to
int
Add or Remove Method invocation
this.mapper.applyAsByte(this.inner.applyAsByte(object))
to
this.mapper.applyAsInt(this.inner.applyAsInt(object))
Update Anonymous class
{ @Override public byte applyAsByte( T object){ return this.mapper.applyAsByte(this.inner.applyAsByte(object)); } @Override public MapperType mapperType(){ return MapperType.BYTE_TO_BYTE; } }
to
{ @Override public int applyAsInt( T object){ return this.mapper.applyAsInt(this.inner.applyAsInt(object)); } @Override public MapperType mapperType(){ return MapperType.INT_TO_INT; } }