Skip to content

Commit 72f13f8

Browse files
authored
[ci skip] Mention API Checks for CONTRIBUTING.md (#12315)
1 parent 9f00461 commit 72f13f8

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

CONTRIBUTING.md

+34
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,40 @@ are assumed to be non-null by default. For less obvious placing such as on gener
264264
**For other classes**: Keep using both `@Nullable` and `@NotNull` from `org.jetbrains.annotations`. These
265265
will be replaced later.
266266

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.
274+
275+
ex:
276+
```java
277+
@Override
278+
public void sendMessage(Player player, Component message) {
279+
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+
private Player player;
291+
292+
@Override
293+
public void 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+
267301
## Access Transformers
268302
Sometimes, Vanilla code already contains a field, method, or type you want to access
269303
but the visibility is too low (e.g. a private field in an entity class). Paper can use access transformers

0 commit comments

Comments
 (0)