Class Args
java.lang.Object
org.jfree.graphics2d.Args
-
Method Summary
Modifier and TypeMethodDescriptionstatic voidarrayMustHaveLength(int length, boolean[] array, String ref) Checks an array to ensure it has the correct length and throws anIllegalArgumentExceptionif it does not.static voidarrayMustHaveLength(int length, double[] array, String ref) Checks an array to ensure it has the correct length and throws anIllegalArgumentExceptionif it does not.static voidnullNotPermitted(Object obj, String ref) Checks that an argument is non-nulland throws anIllegalArgumentExceptionotherwise.
-
Method Details
-
nullNotPermitted
Checks that an argument is non-nulland throws anIllegalArgumentExceptionotherwise.- Parameters:
obj- the object to check fornull.ref- the text name for the parameter (to include in the exception message).
-
arrayMustHaveLength
Checks an array to ensure it has the correct length and throws anIllegalArgumentExceptionif it does not.- Parameters:
length- the required length.array- the array to check.ref- the text name of the array parameter (to include in the exception message).
-
arrayMustHaveLength
Checks an array to ensure it has the correct length and throws anIllegalArgumentExceptionif it does not.- Parameters:
length- the required length.array- the array to check (nullnot permitted).ref- the text name of the array parameter (to include in the exception message).
-