◆ getNotNull()
static <T> T fiftyone.pipeline.util.Check.getNotNull | ( | T | value, |
String | message | ||
) |
static
Checks if a value is null, and throws an IllegalArgumentException if it is.
- Parameters
-
- value - to check
- message - message to add to the exception if one is thrown
- <T> - type of the value
- Returns
- the value that was checked
◆ guard()
static void fiftyone.pipeline.util.Check.guard ( boolean condition, String message ) staticThrow an IllegalArgumentException if a condition is not met.
- Parameters
-
- condition - result of a conditional expression
- message - message to add to the exception if one is thrown