Record Class FrameworkConfiguration

java.lang.Object
java.lang.Record
net.neoforged.testframework.conf.FrameworkConfiguration

@ParametersAreNonnullByDefault public record FrameworkConfiguration(ResourceLocation id, Collection<Feature> enabledFeatures, int commandRequiredPermission, List<String> enabledTests, @Nullable Supplier<ClientConfiguration> clientConfiguration) extends Record
  • Field Details

    • id

      private final ResourceLocation id
      The field for the id record component.
    • enabledFeatures

      private final Collection<Feature> enabledFeatures
      The field for the enabledFeatures record component.
    • commandRequiredPermission

      private final int commandRequiredPermission
      The field for the commandRequiredPermission record component.
    • enabledTests

      private final List<String> enabledTests
      The field for the enabledTests record component.
    • clientConfiguration

      @Nullable private final @Nullable Supplier<ClientConfiguration> clientConfiguration
      The field for the clientConfiguration record component.
  • Constructor Details

    • FrameworkConfiguration

      public FrameworkConfiguration(ResourceLocation id, Collection<Feature> enabledFeatures, int commandRequiredPermission, List<String> enabledTests, @Nullable @Nullable Supplier<ClientConfiguration> clientConfiguration)
      Creates an instance of a FrameworkConfiguration record class.
      Parameters:
      id - the value for the id record component
      enabledFeatures - the value for the enabledFeatures record component
      commandRequiredPermission - the value for the commandRequiredPermission record component
      enabledTests - the value for the enabledTests record component
      clientConfiguration - the value for the clientConfiguration record component
  • Method Details

    • builder

    • isEnabled

      public boolean isEnabled(Feature feature)
    • create

      public MutableTestFramework create()
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • id

      public ResourceLocation id()
      Returns the value of the id record component.
      Returns:
      the value of the id record component
    • enabledFeatures

      public Collection<Feature> enabledFeatures()
      Returns the value of the enabledFeatures record component.
      Returns:
      the value of the enabledFeatures record component
    • commandRequiredPermission

      public int commandRequiredPermission()
      Returns the value of the commandRequiredPermission record component.
      Returns:
      the value of the commandRequiredPermission record component
    • enabledTests

      public List<String> enabledTests()
      Returns the value of the enabledTests record component.
      Returns:
      the value of the enabledTests record component
    • clientConfiguration

      @Nullable public @Nullable Supplier<ClientConfiguration> clientConfiguration()
      Returns the value of the clientConfiguration record component.
      Returns:
      the value of the clientConfiguration record component