You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+34
Original file line number
Diff line number
Diff line change
@@ -264,6 +264,40 @@ are assumed to be non-null by default. For less obvious placing such as on gener
264
264
**For other classes**: Keep using both `@Nullable` and `@NotNull` from `org.jetbrains.annotations`. These
265
265
will be replaced later.
266
266
267
+
### API checks
268
+
269
+
When performing API-related checks where an exception needs to be thrown under specific conditions, you should use the `Preconditions` class.
270
+
271
+
#### Checking Method Arguments
272
+
To validate method arguments, use `Preconditions#checkArgument`. This will throw an `IllegalArgumentException` if the condition is not met.
273
+
> Don't use Preconditions#checkNotNull, as it throws a NullPointerException, which makes it harder to determine whether the error was caused by an internal issue or invalid arguments.
Preconditions.checkArgument(player !=null, "player cannot be null");
280
+
Preconditions.checkArgument(player.isOnline(), "player %s must be online", player.getName());
281
+
Preconditions.checkArgument(message !=null, "message cannot be null");
282
+
// rest of code
283
+
}
284
+
```
285
+
286
+
#### Checking Object State
287
+
To validate the state of an object inside a method, use `Preconditions#checkState`. This will throw an `IllegalStateException` if the condition is not met.
288
+
ex:
289
+
```java
290
+
privatePlayer player;
291
+
292
+
@Override
293
+
publicvoid sendMessage(Component message) {
294
+
Preconditions.checkArgument(message !=null, "message cannot be null");
295
+
Preconditions.checkState(this.player !=null, "player cannot be null");
296
+
Preconditions.checkState(this.player.isOnline(), "player %s must be online", this.player.getName());
297
+
// rest of code
298
+
}
299
+
```
300
+
267
301
## Access Transformers
268
302
Sometimes, Vanilla code already contains a field, method, or type you want to access
269
303
but the visibility is too low (e.g. a private field in an entity class). Paper can use access transformers
0 commit comments