Package net.minecraft.util.path
Record Class AllowedSymlinkPathMatcher.Entry
java.lang.Object
java.lang.Record
net.minecraft.util.path.AllowedSymlinkPathMatcher.Entry
- Record Components:
- type-
- pattern-
- Enclosing class:
- AllowedSymlinkPathMatcher
public static record AllowedSymlinkPathMatcher.Entry(AllowedSymlinkPathMatcher.EntryType type, String pattern)
extends Record
- Mappings:
- Namespace - Name - named - net/minecraft/util/path/AllowedSymlinkPathMatcher$Entry- intermediary - net/minecraft/class_8582$class_8583- official - fat$a- named - type- intermediary - comp_1549- official - a- named - pattern- intermediary - comp_1550- official - b
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptioncompile(FileSystem fileSystem) final booleanIndicates whether some other object is "equal to" this one.(package private) static AllowedSymlinkPathMatcher.Entryfinal inthashCode()Returns a hash code value for this object.pattern()Returns the value of thepatternrecord component.(package private) static AllowedSymlinkPathMatcher.Entry(package private) static Optional<AllowedSymlinkPathMatcher.Entry> (package private) static AllowedSymlinkPathMatcher.Entryfinal StringtoString()Returns a string representation of this record class.type()Returns the value of thetyperecord component.
- 
Field Details
- 
Constructor Details- 
Entry
 
- 
- 
Method Details- 
compile- Mappings:
- Namespace - Name - Mixin selector - named - compile- Lnet/minecraft/util/path/AllowedSymlinkPathMatcher$Entry;compile(Ljava/nio/file/FileSystem;)Ljava/nio/file/PathMatcher;- intermediary - method_52256- Lnet/minecraft/class_8582$class_8583;method_52256(Ljava/nio/file/FileSystem;)Ljava/nio/file/PathMatcher;- official - a- Lfat$a;a(Ljava/nio/file/FileSystem;)Ljava/nio/file/PathMatcher;
 
- 
readLine- Mappings:
- Namespace - Name - Mixin selector - named - readLine- Lnet/minecraft/util/path/AllowedSymlinkPathMatcher$Entry;readLine(Ljava/lang/String;)Ljava/util/Optional;- intermediary - method_52255- Lnet/minecraft/class_8582$class_8583;method_52255(Ljava/lang/String;)Ljava/util/Optional;- official - a- Lfat$a;a(Ljava/lang/String;)Ljava/util/Optional;
 
- 
glob- Mappings:
- Namespace - Name - Mixin selector - named - glob- Lnet/minecraft/util/path/AllowedSymlinkPathMatcher$Entry;glob(Ljava/lang/String;)Lnet/minecraft/util/path/AllowedSymlinkPathMatcher$Entry;- intermediary - method_52257- Lnet/minecraft/class_8582$class_8583;method_52257(Ljava/lang/String;)Lnet/minecraft/class_8582$class_8583;- official - b- Lfat$a;b(Ljava/lang/String;)Lfat$a;
 
- 
regex- Mappings:
- Namespace - Name - Mixin selector - named - regex- Lnet/minecraft/util/path/AllowedSymlinkPathMatcher$Entry;regex(Ljava/lang/String;)Lnet/minecraft/util/path/AllowedSymlinkPathMatcher$Entry;- intermediary - method_52258- Lnet/minecraft/class_8582$class_8583;method_52258(Ljava/lang/String;)Lnet/minecraft/class_8582$class_8583;- official - c- Lfat$a;c(Ljava/lang/String;)Lfat$a;
 
- 
prefix- Mappings:
- Namespace - Name - Mixin selector - named - prefix- Lnet/minecraft/util/path/AllowedSymlinkPathMatcher$Entry;prefix(Ljava/lang/String;)Lnet/minecraft/util/path/AllowedSymlinkPathMatcher$Entry;- intermediary - method_52259- Lnet/minecraft/class_8582$class_8583;method_52259(Ljava/lang/String;)Lnet/minecraft/class_8582$class_8583;- official - d- Lfat$a;d(Ljava/lang/String;)Lfat$a;
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
typeReturns the value of thetyperecord component.- Returns:
- the value of the typerecord component
 
- 
patternReturns the value of thepatternrecord component.- Returns:
- the value of the patternrecord component
 
 
-