Class MaterialOrHandArgument<C>

java.lang.Object
cloud.commandframework.arguments.CommandArgument<C,MaterialOrHand>
rocks.gravili.notquests.spigot.commands.arguments.MaterialOrHandArgument<C>
Type Parameters:
C - Command sender type
All Implemented Interfaces:
cloud.commandframework.keys.CloudKeyHolder<MaterialOrHand>, Comparable<cloud.commandframework.arguments.CommandArgument<?,?>>

public class MaterialOrHandArgument<C> extends cloud.commandframework.arguments.CommandArgument<C,MaterialOrHand>
cloud argument type that parses Bukkit materials
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static final class 
     
    static final class 
     
    static final class 
     

    Nested classes/interfaces inherited from class cloud.commandframework.arguments.CommandArgument

    cloud.commandframework.arguments.CommandArgument.TypedBuilder<C extends Object,T extends Object,B extends cloud.commandframework.arguments.CommandArgument.Builder<C,T>>
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
    MaterialOrHandArgument(boolean required, @NonNull String name, @NonNull String defaultValue, @Nullable BiFunction<@NonNull cloud.commandframework.context.CommandContext<C>,@NonNull String,@NonNull List<@NonNull String>> suggestionsProvider, @NonNull cloud.commandframework.ArgumentDescription defaultDescription, NotQuests main)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static <C> @NonNull MaterialOrHandArgument.Builder<C>
    newBuilder(@NonNull String name, NotQuests main)
    Create a new builder
    static <C> @NonNull cloud.commandframework.arguments.CommandArgument<C,MaterialOrHand>
    of(@NonNull String name, NotQuests main)
    Create a new required argument
    static <C> @NonNull cloud.commandframework.arguments.CommandArgument<C,MaterialOrHand>
    optional(@NonNull String name, @NonNull MaterialOrHand material, NotQuests main)
    Create a new optional argument with a default value
    static <C> @NonNull cloud.commandframework.arguments.CommandArgument<C,MaterialOrHand>
    optional(@NonNull String name, NotQuests main)
    Create a new optional argument

    Methods inherited from class cloud.commandframework.arguments.CommandArgument

    addPreprocessor, compareTo, copy, equals, getDefaultDescription, getDefaultValue, getKey, getName, getOwningCommand, getParser, getSuggestionsProvider, getValueType, hasDefaultValue, hashCode, isArgumentRegistered, isRequired, ofType, ofType, preprocess, setArgumentRegistered, setOwningCommand, toString

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • MaterialOrHandArgument

      protected MaterialOrHandArgument(boolean required, @NonNull String name, @NonNull String defaultValue, @Nullable BiFunction<@NonNull cloud.commandframework.context.CommandContext<C>,@NonNull String,@NonNull List<@NonNull String>> suggestionsProvider, @NonNull cloud.commandframework.ArgumentDescription defaultDescription, NotQuests main)
  • Method Details

    • newBuilder

      public static <C> @NonNull MaterialOrHandArgument.Builder<C> newBuilder(@NonNull String name, NotQuests main)
      Create a new builder
      Type Parameters:
      C - Command sender type
      Parameters:
      name - Name of the argument
      Returns:
      Created builder
    • of

      public static <C> @NonNull cloud.commandframework.arguments.CommandArgument<C,MaterialOrHand> of(@NonNull String name, NotQuests main)
      Create a new required argument
      Type Parameters:
      C - Command sender type
      Parameters:
      name - Argument name
      Returns:
      Created argument
    • optional

      public static <C> @NonNull cloud.commandframework.arguments.CommandArgument<C,MaterialOrHand> optional(@NonNull String name, NotQuests main)
      Create a new optional argument
      Type Parameters:
      C - Command sender type
      Parameters:
      name - Argument name
      Returns:
      Created argument
    • optional

      public static <C> @NonNull cloud.commandframework.arguments.CommandArgument<C,MaterialOrHand> optional(@NonNull String name, @NonNull MaterialOrHand material, NotQuests main)
      Create a new optional argument with a default value
      Type Parameters:
      C - Command sender type
      Parameters:
      name - Argument name
      material - Default value
      Returns:
      Created argument