Class UMath
- java.lang.Object
-
- org.apache.tika.parser.microsoft.onenote.fsshttpb.unsigned.UMath
-
public final class UMath extends Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UByte
max(UByte a, UByte b)
Returns the greater of twoUByte
values.static UInteger
max(UInteger a, UInteger b)
Returns the greater of twoUInteger
values.static ULong
max(ULong a, ULong b)
Returns the greater of twoULong
values.static UShort
max(UShort a, UShort b)
Returns the greater of twoUShort
values.static UByte
min(UByte a, UByte b)
Returns the smaller of twoUByte
values.static UInteger
min(UInteger a, UInteger b)
Returns the smaller of twoUInteger
values.static ULong
min(ULong a, ULong b)
Returns the smaller of twoULong
values.static UShort
min(UShort a, UShort b)
Returns the smaller of twoUShort
values.
-
-
-
Method Detail
-
max
public static UByte max(UByte a, UByte b)
Returns the greater of twoUByte
values.- Parameters:
a
- an argument.b
- another argument.- Returns:
- the larger of
a
andb
.
-
max
public static UInteger max(UInteger a, UInteger b)
Returns the greater of twoUInteger
values.- Parameters:
a
- an argument.b
- another argument.- Returns:
- the larger of
a
andb
.
-
max
public static ULong max(ULong a, ULong b)
Returns the greater of twoULong
values.- Parameters:
a
- an argument.b
- another argument.- Returns:
- the larger of
a
andb
.
-
max
public static UShort max(UShort a, UShort b)
Returns the greater of twoUShort
values.- Parameters:
a
- an argument.b
- another argument.- Returns:
- the larger of
a
andb
.
-
min
public static UByte min(UByte a, UByte b)
Returns the smaller of twoUByte
values.- Parameters:
a
- an argument.b
- another argument.- Returns:
- the larger of
a
andb
.
-
min
public static UInteger min(UInteger a, UInteger b)
Returns the smaller of twoUInteger
values.- Parameters:
a
- an argument.b
- another argument.- Returns:
- the smaller of
a
andb
.
-
min
public static ULong min(ULong a, ULong b)
Returns the smaller of twoULong
values.- Parameters:
a
- an argument.b
- another argument.- Returns:
- the smaller of
a
andb
.
-
-