Java org.joda.time.field FieldUtils fields, constructors, methods, implement or subclass

Example usage for Java org.joda.time.field FieldUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.joda.time.field FieldUtils.

The text is from its open source code.

Method

intsafeAdd(int val1, int val2)
Add two values throwing an exception if overflow occurs.
longsafeAdd(long val1, long val2)
Add two values throwing an exception if overflow occurs.
intsafeMultiply(int val1, int val2)
Multiply two values throwing an exception if overflow occurs.
longsafeMultiply(long val1, int val2)
Multiply two values throwing an exception if overflow occurs.
longsafeMultiply(long val1, long val2)
Multiply two values throwing an exception if overflow occurs.
intsafeMultiplyToInt(long val1, long val2)
Multiply two values to return an int throwing an exception if overflow occurs.
intsafeNegate(int value)
Negates the input throwing an exception if it can't negate it.
intsafeToInt(long value)
Casts to an int throwing an exception if overflow occurs.