#Java - Code Snippets for '#Preconditions' - 2 code snippet(s) found |
|
Sample 1. Usage of com.google.common.base.Preconditions.checkNotNull | |
|
Preconditions.checkNotNull(objectRef, "object reference holds null at this point");
|
|
Like Feedback Google Guava Preconditions |
|
|
Sample 2. Usage of com.google.common.base.Preconditions.checkArgument | |
|
Preconditions.checkArgument(argument >= 0, "argument should be a positive number");
|
|
Like Feedback Google Guava Preconditions |
|
|