Record Class LevelStorageSource.LevelCandidates
java.lang.Object
java.lang.Record
net.minecraft.world.level.storage.LevelStorageSource.LevelCandidates
- All Implemented Interfaces:
Iterable<LevelStorageSource.LevelDirectory>
- Enclosing class:
- LevelStorageSource
public static record LevelStorageSource.LevelCandidates(List<LevelStorageSource.LevelDirectory> levels)
extends Record
implements Iterable<LevelStorageSource.LevelDirectory>
-
Field Summary
Modifier and TypeFieldDescriptionprivate final List<LevelStorageSource.LevelDirectory>
The field for thelevels
record component. -
Constructor Summary
ConstructorDescriptionCreates an instance of aLevelCandidates
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.boolean
isEmpty()
iterator()
levels()
Returns the value of thelevels
record component.final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Field Details
-
levels
The field for thelevels
record component.
-
-
Constructor Details
-
LevelCandidates
Creates an instance of aLevelCandidates
record class.- Parameters:
levels
- the value for thelevels
record component
-
-
Method Details
-
isEmpty
public boolean isEmpty() -
iterator
- Specified by:
iterator
in interfaceIterable<LevelStorageSource.LevelDirectory>
-
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. -
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. -
equals
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
levels
Returns the value of thelevels
record component.- Returns:
- the value of the
levels
record component
-