Class StoragePreconditions

java.lang.Object
net.fabricmc.fabric.api.transfer.v1.storage.StoragePreconditions

@Experimental @Deprecated public class StoragePreconditions extends Object
Deprecated.
Experimental feature, we reserve the right to remove or change it without further notice. The transfer API is a complex addition, and we want to be able to correct possible design mistakes.
  • Method Details

    • notBlank

      public static void notBlank(TransferVariant<?> variant)
      Deprecated.
      Ensure that the passed transfer variant is not blank.
      Throws:
      IllegalArgumentException - If the variant is blank.
    • notNegative

      public static void notNegative(long amount)
      Deprecated.
      Ensure that the passed amount is not negative. That is, it must be >= 0.
      Throws:
      IllegalArgumentException - If the amount is negative.
    • notBlankNotNegative

      public static void notBlankNotNegative(TransferVariant<?> variant, long amount)
      Deprecated.
      Check both for a not blank transfer variant and a not negative amount.