Class Identifier

java.lang.Object
net.minecraft.util.Identifier
All Implemented Interfaces:
Comparable<Identifier>
Direct Known Subclasses:
ModelIdentifier

public class Identifier extends Object implements Comparable<Identifier>
An identifier used to identify things. This is also known as "resource location", "namespaced ID", "location", or just "ID". This is a non-typed immutable object, and identifies things using a combination of namespace and path. Identifiers should always be compared using equals(java.lang.Object) method, not ==.

Format

Identifiers are formatted as <namespace>:<path>. If the namespace and colon are omitted, the namespace defaults to "minecraft".

The namespace and path must contain only ASCII lowercase letters ( [a-z]), ASCII digits ([0-9]), or the characters _, ., and -. The path can also contain the standard path separator /. Uppercase letters cannot be used. isValid(java.lang.String) can be used to check whether a string is a valid identifier. When handling externally provided identifiers, it should either validate or use tryParse(java.lang.String) instead of the constructor. Another common mistake is using a formatted string with %d or %f to construct an identifier without specifying the locate explicitly, as they are not guaranteed to be ASCII digits in certain locales. Use String.format(Locale, String, Object[]) with Locale.ROOT instead of String.formatted(java.lang.Object...).

Namespace

The namespace of an identifier identifies the origin of the thing. For example, two mods to the game could both add an item with the ID "orange"; the namespace is used to differentiate the two. (The convention is to use the ID assigned to the mod as the namespace.)

A namespace only determines the source of an identifier, and does not determine its purpose; so long as two identifiers are used for different purposes, they can share the namespace and path. For example, the identifier minecraft:dirt is shared by blocks and items. There is no need to change the identifier to, say, minecraft_block:dirt or minecraft_item:dirt.

Several namespaces are reserved for vanilla use. While those identifiers can be used for referencing and overwriting vanilla things, it is highly discouraged to use them to identify your own, new things. For example, a modded block or a new biome added by data packs should not use the reserved namespaces, but it's fine to use them when modifying an existing biome under that namespace. The reserved namespaces are "minecraft", brigadier, and "realms". "minecraft" is also the default namespace used when no namespace is provided.

Path

The path of the identifier identifies the thing within the namespace, such as between different items from the same mod. Additionally, this is sometimes used to refer to a file path, such as in textures.

Creation

There are many ways to create a new identifier:

Using Identifier

Identifiers identify several objects in the game. Registry holds objects, such as blocks and items, that are identified by an identifier. Textures are also identified using an identifier; such an identifier is represented as a file path with an extension, such as minecraft:textures/entity/pig/pig.png.

The string representation of the identifier (<namespace>:<path>) can be obtained by calling toString(). This always includes the namespace. An identifier can be converted to a translation key using toTranslationKey(String) method.

RegistryKey

Identifier is not type-aware; minecraft:tnt could refer to a TNT block, a TNT item, or a TNT entity. To identify a registered object uniquely, RegistryKey can be used. A registry key is a combination of the registry's identifier and the object's identifier.

Mappings:
Namespace Name
official acf
intermediary net/minecraft/class_2960
named net/minecraft/util/Identifier
  • Field Details

    • CODEC

      public static final com.mojang.serialization.Codec<Identifier> CODEC
      Mappings:
      Namespace Name Mixin selector
      official a Lacf;a:Lcom/mojang/serialization/Codec;
      intermediary field_25139 Lnet/minecraft/class_2960;field_25139:Lcom/mojang/serialization/Codec;
      named CODEC Lnet/minecraft/util/Identifier;CODEC:Lcom/mojang/serialization/Codec;
    • COMMAND_EXCEPTION

      private static final com.mojang.brigadier.exceptions.SimpleCommandExceptionType COMMAND_EXCEPTION
      Mappings:
      Namespace Name Mixin selector
      official e Lacf;e:Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType;
      intermediary field_13354 Lnet/minecraft/class_2960;field_13354:Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType;
      named COMMAND_EXCEPTION Lnet/minecraft/util/Identifier;COMMAND_EXCEPTION:Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType;
    • NAMESPACE_SEPARATOR

      public static final char NAMESPACE_SEPARATOR
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official b Lacf;b:C
      intermediary field_33380 Lnet/minecraft/class_2960;field_33380:C
      named NAMESPACE_SEPARATOR Lnet/minecraft/util/Identifier;NAMESPACE_SEPARATOR:C
    • DEFAULT_NAMESPACE

      public static final String DEFAULT_NAMESPACE
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official c Lacf;c:Ljava/lang/String;
      intermediary field_33381 Lnet/minecraft/class_2960;field_33381:Ljava/lang/String;
      named DEFAULT_NAMESPACE Lnet/minecraft/util/Identifier;DEFAULT_NAMESPACE:Ljava/lang/String;
    • REALMS_NAMESPACE

      public static final String REALMS_NAMESPACE
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official d Lacf;d:Ljava/lang/String;
      intermediary field_33382 Lnet/minecraft/class_2960;field_33382:Ljava/lang/String;
      named REALMS_NAMESPACE Lnet/minecraft/util/Identifier;REALMS_NAMESPACE:Ljava/lang/String;
    • namespace

      private final String namespace
      Mappings:
      Namespace Name Mixin selector
      official f Lacf;f:Ljava/lang/String;
      intermediary field_13353 Lnet/minecraft/class_2960;field_13353:Ljava/lang/String;
      named namespace Lnet/minecraft/util/Identifier;namespace:Ljava/lang/String;
    • path

      private final String path
      Mappings:
      Namespace Name Mixin selector
      official g Lacf;g:Ljava/lang/String;
      intermediary field_13355 Lnet/minecraft/class_2960;field_13355:Ljava/lang/String;
      named path Lnet/minecraft/util/Identifier;path:Ljava/lang/String;
  • Constructor Details

    • Identifier

      protected Identifier(String namespace, String path, @Nullable @Nullable Identifier.ExtraData extraData)
      Mappings:
      Namespace Name Mixin selector
      official <init> Lacf;<init>(Ljava/lang/String;Ljava/lang/String;Lacf$a;)V
      intermediary <init> Lnet/minecraft/class_2960;<init>(Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/class_2960$class_7658;)V
      named <init> Lnet/minecraft/util/Identifier;<init>(Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/util/Identifier$ExtraData;)V
    • Identifier

      public Identifier(String namespace, String path)
      Mappings:
      Namespace Name Mixin selector
      official <init> Lacf;<init>(Ljava/lang/String;Ljava/lang/String;)V
      intermediary <init> Lnet/minecraft/class_2960;<init>(Ljava/lang/String;Ljava/lang/String;)V
      named <init> Lnet/minecraft/util/Identifier;<init>(Ljava/lang/String;Ljava/lang/String;)V
    • Identifier

      private Identifier(String[] id)
      Mappings:
      Namespace Name Mixin selector
      official <init> Lacf;<init>([Ljava/lang/String;)V
      intermediary <init> Lnet/minecraft/class_2960;<init>([Ljava/lang/String;)V
      named <init> Lnet/minecraft/util/Identifier;<init>([Ljava/lang/String;)V
    • Identifier

      public Identifier(String id)

      Takes a string of the form <namespace>:<path>, for example minecraft:iron_ingot.

      The string will be split (on the :) into an identifier with the specified path and namespace. Prefer using the Identifier(java.lang.String, java.lang.String) constructor that takes the namespace and path as individual parameters to avoid mistakes.

      Throws:
      InvalidIdentifierException - if the string cannot be parsed as an identifier.
      Mappings:
      Namespace Name Mixin selector
      official <init> Lacf;<init>(Ljava/lang/String;)V
      intermediary <init> Lnet/minecraft/class_2960;<init>(Ljava/lang/String;)V
      named <init> Lnet/minecraft/util/Identifier;<init>(Ljava/lang/String;)V
  • Method Details

    • splitOn

      public static Identifier splitOn(String id, char delimiter)
      Mappings:
      Namespace Name Mixin selector
      official a Lacf;a(Ljava/lang/String;C)Lacf;
      intermediary method_12838 Lnet/minecraft/class_2960;method_12838(Ljava/lang/String;C)Lnet/minecraft/class_2960;
      named splitOn Lnet/minecraft/util/Identifier;splitOn(Ljava/lang/String;C)Lnet/minecraft/util/Identifier;
    • tryParse

      @Nullable public static @Nullable Identifier tryParse(String id)
      Returns id parsed as an identifier, or null if it cannot be parsed.
      Returns:
      id parsed as an identifier, or null if it cannot be parsed
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official a Lacf;a(Ljava/lang/String;)Lacf;
      intermediary method_12829 Lnet/minecraft/class_2960;method_12829(Ljava/lang/String;)Lnet/minecraft/class_2960;
      named tryParse Lnet/minecraft/util/Identifier;tryParse(Ljava/lang/String;)Lnet/minecraft/util/Identifier;
    • of

      @Nullable public static @Nullable Identifier of(String namespace, String path)
      Returns an identifier from the provided namespace and path, or null if either argument is invalid.
      Returns:
      an identifier from the provided namespace and path, or null if either argument is invalid
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official a Lacf;a(Ljava/lang/String;Ljava/lang/String;)Lacf;
      intermediary method_43902 Lnet/minecraft/class_2960;method_43902(Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/class_2960;
      named of Lnet/minecraft/util/Identifier;of(Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/util/Identifier;
    • split

      protected static String[] split(String id, char delimiter)
      Mappings:
      Namespace Name Mixin selector
      official b Lacf;b(Ljava/lang/String;C)[Ljava/lang/String;
      intermediary method_12830 Lnet/minecraft/class_2960;method_12830(Ljava/lang/String;C)[Ljava/lang/String;
      named split Lnet/minecraft/util/Identifier;split(Ljava/lang/String;C)[Ljava/lang/String;
    • validate

      public static com.mojang.serialization.DataResult<Identifier> validate(String id)
      Mappings:
      Namespace Name Mixin selector
      official b Lacf;b(Ljava/lang/String;)Lcom/mojang/serialization/DataResult;
      intermediary method_29186 Lnet/minecraft/class_2960;method_29186(Ljava/lang/String;)Lcom/mojang/serialization/DataResult;
      named validate Lnet/minecraft/util/Identifier;validate(Ljava/lang/String;)Lcom/mojang/serialization/DataResult;
    • getPath

      public String getPath()
      Returns the path of the identifier.
      Returns:
      the path of the identifier
      Mappings:
      Namespace Name Mixin selector
      official a Lacf;a()Ljava/lang/String;
      intermediary method_12832 Lnet/minecraft/class_2960;method_12832()Ljava/lang/String;
      named getPath Lnet/minecraft/util/Identifier;getPath()Ljava/lang/String;
    • getNamespace

      public String getNamespace()
      Returns the namespace of the identifier.

      This returns "minecraft" for identifiers created without a namespace.

      Returns:
      the namespace of the identifier
      Mappings:
      Namespace Name Mixin selector
      official b Lacf;b()Ljava/lang/String;
      intermediary method_12836 Lnet/minecraft/class_2960;method_12836()Ljava/lang/String;
      named getNamespace Lnet/minecraft/util/Identifier;getNamespace()Ljava/lang/String;
    • withPath

      public Identifier withPath(String path)
      Mappings:
      Namespace Name Mixin selector
      official c Lacf;c(Ljava/lang/String;)Lacf;
      intermediary method_45136 Lnet/minecraft/class_2960;method_45136(Ljava/lang/String;)Lnet/minecraft/class_2960;
      named withPath Lnet/minecraft/util/Identifier;withPath(Ljava/lang/String;)Lnet/minecraft/util/Identifier;
    • withPath

      public Identifier withPath(UnaryOperator<String> pathFunction)
      Mappings:
      Namespace Name Mixin selector
      official a Lacf;a(Ljava/util/function/UnaryOperator;)Lacf;
      intermediary method_45134 Lnet/minecraft/class_2960;method_45134(Ljava/util/function/UnaryOperator;)Lnet/minecraft/class_2960;
      named withPath Lnet/minecraft/util/Identifier;withPath(Ljava/util/function/UnaryOperator;)Lnet/minecraft/util/Identifier;
    • withPrefixedPath

      public Identifier withPrefixedPath(String prefix)
      Mappings:
      Namespace Name Mixin selector
      official d Lacf;d(Ljava/lang/String;)Lacf;
      intermediary method_45138 Lnet/minecraft/class_2960;method_45138(Ljava/lang/String;)Lnet/minecraft/class_2960;
      named withPrefixedPath Lnet/minecraft/util/Identifier;withPrefixedPath(Ljava/lang/String;)Lnet/minecraft/util/Identifier;
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
      Mappings:
      Namespace Name Mixin selector
      official equals Lacf;equals(Ljava/lang/Object;)Z
      intermediary equals Lnet/minecraft/class_2960;equals(Ljava/lang/Object;)Z
      named equals Lnet/minecraft/util/Identifier;equals(Ljava/lang/Object;)Z
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • compareTo

      public int compareTo(Identifier identifier)
      Specified by:
      compareTo in interface Comparable<Identifier>
      Mappings:
      Namespace Name Mixin selector
      official a Lacf;a(Lacf;)I
      intermediary method_12833 Lnet/minecraft/class_2960;method_12833(Lnet/minecraft/class_2960;)I
      named compareTo Lnet/minecraft/util/Identifier;compareTo(Lnet/minecraft/util/Identifier;)I
    • toUnderscoreSeparatedString

      public String toUnderscoreSeparatedString()
      Returns the string representation of the identifier with slashes and colons replaced with underscores.
      Returns:
      the string representation of the identifier with slashes and colons replaced with underscores
      Mappings:
      Namespace Name Mixin selector
      official c Lacf;c()Ljava/lang/String;
      intermediary method_36181 Lnet/minecraft/class_2960;method_36181()Ljava/lang/String;
      named toUnderscoreSeparatedString Lnet/minecraft/util/Identifier;toUnderscoreSeparatedString()Ljava/lang/String;
    • toTranslationKey

      public String toTranslationKey()
      Returns the long translation key, without omitting the default namespace.
      Returns:
      the long translation key, without omitting the default namespace
      Mappings:
      Namespace Name Mixin selector
      official d Lacf;d()Ljava/lang/String;
      intermediary method_42094 Lnet/minecraft/class_2960;method_42094()Ljava/lang/String;
      named toTranslationKey Lnet/minecraft/util/Identifier;toTranslationKey()Ljava/lang/String;
    • toShortTranslationKey

      public String toShortTranslationKey()
      Returns the short translation key, with the default namespace omitted if present.
      Returns:
      the short translation key, with the default namespace omitted if present
      Mappings:
      Namespace Name Mixin selector
      official e Lacf;e()Ljava/lang/String;
      intermediary method_43903 Lnet/minecraft/class_2960;method_43903()Ljava/lang/String;
      named toShortTranslationKey Lnet/minecraft/util/Identifier;toShortTranslationKey()Ljava/lang/String;
    • toTranslationKey

      public String toTranslationKey(String prefix)
      Returns the long translation key prefixed with prefix and a dot.
      Returns:
      the long translation key prefixed with prefix and a dot
      Mappings:
      Namespace Name Mixin selector
      official e Lacf;e(Ljava/lang/String;)Ljava/lang/String;
      intermediary method_42093 Lnet/minecraft/class_2960;method_42093(Ljava/lang/String;)Ljava/lang/String;
      named toTranslationKey Lnet/minecraft/util/Identifier;toTranslationKey(Ljava/lang/String;)Ljava/lang/String;
    • fromCommandInput

      public static Identifier fromCommandInput(com.mojang.brigadier.StringReader reader) throws com.mojang.brigadier.exceptions.CommandSyntaxException
      Throws:
      com.mojang.brigadier.exceptions.CommandSyntaxException
      Mappings:
      Namespace Name Mixin selector
      official a Lacf;a(Lcom/mojang/brigadier/StringReader;)Lacf;
      intermediary method_12835 Lnet/minecraft/class_2960;method_12835(Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/class_2960;
      named fromCommandInput Lnet/minecraft/util/Identifier;fromCommandInput(Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/util/Identifier;
    • isCharValid

      public static boolean isCharValid(char c)
      Mappings:
      Namespace Name Mixin selector
      official a Lacf;a(C)Z
      intermediary method_12831 Lnet/minecraft/class_2960;method_12831(C)Z
      named isCharValid Lnet/minecraft/util/Identifier;isCharValid(C)Z
    • isPathValid

      private static boolean isPathValid(String path)
      Returns whether path can be used as an identifier's path.
      Returns:
      whether path can be used as an identifier's path
      Mappings:
      Namespace Name Mixin selector
      official g Lacf;g(Ljava/lang/String;)Z
      intermediary method_20208 Lnet/minecraft/class_2960;method_20208(Ljava/lang/String;)Z
      named isPathValid Lnet/minecraft/util/Identifier;isPathValid(Ljava/lang/String;)Z
    • isNamespaceValid

      private static boolean isNamespaceValid(String namespace)
      Returns whether namespace can be used as an identifier's namespace.
      Returns:
      whether namespace can be used as an identifier's namespace
      Mappings:
      Namespace Name Mixin selector
      official h Lacf;h(Ljava/lang/String;)Z
      intermediary method_20209 Lnet/minecraft/class_2960;method_20209(Ljava/lang/String;)Z
      named isNamespaceValid Lnet/minecraft/util/Identifier;isNamespaceValid(Ljava/lang/String;)Z
    • validateNamespace

      private static String validateNamespace(String namespace, String path)
      Mappings:
      Namespace Name Mixin selector
      official b Lacf;b(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
      intermediary method_45135 Lnet/minecraft/class_2960;method_45135(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
      named validateNamespace Lnet/minecraft/util/Identifier;validateNamespace(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
    • isPathCharacterValid

      public static boolean isPathCharacterValid(char character)
      Returns whether character is valid for use in identifier paths.
      Returns:
      whether character is valid for use in identifier paths
      Mappings:
      Namespace Name Mixin selector
      official b Lacf;b(C)Z
      intermediary method_29184 Lnet/minecraft/class_2960;method_29184(C)Z
      named isPathCharacterValid Lnet/minecraft/util/Identifier;isPathCharacterValid(C)Z
    • isNamespaceCharacterValid

      private static boolean isNamespaceCharacterValid(char character)
      Returns whether character is valid for use in identifier namespaces.
      Returns:
      whether character is valid for use in identifier namespaces
      Mappings:
      Namespace Name Mixin selector
      official c Lacf;c(C)Z
      intermediary method_29185 Lnet/minecraft/class_2960;method_29185(C)Z
      named isNamespaceCharacterValid Lnet/minecraft/util/Identifier;isNamespaceCharacterValid(C)Z
    • isValid

      public static boolean isValid(String id)
      Returns whether id can be parsed as an identifier.
      Returns:
      whether id can be parsed as an identifier
      Mappings:
      Namespace Name Mixin selector
      official f Lacf;f(Ljava/lang/String;)Z
      intermediary method_20207 Lnet/minecraft/class_2960;method_20207(Ljava/lang/String;)Z
      named isValid Lnet/minecraft/util/Identifier;isValid(Ljava/lang/String;)Z
    • validatePath

      private static String validatePath(String namespace, String path)
      Mappings:
      Namespace Name Mixin selector
      official c Lacf;c(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
      intermediary method_45137 Lnet/minecraft/class_2960;method_45137(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
      named validatePath Lnet/minecraft/util/Identifier;validatePath(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;