MCTag
Importing the class
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
Implemented Interfaces
MCTag implements the following interfaces. That means all methods defined in these interfaces are also available in MCTag
- CommandStringDisplayable
- Comparable<MCTag>
Methods
Adds the given tags to this tag.
Parameter | Type | Description |
---|---|---|
Parameter tags | Type MCTag[] | Description The tags to add. |
Adds the elements that correspond to the given ResourceLocation to this tag.
Parameter | Type | Description |
---|---|---|
Parameter elements | Type ResourceLocation[] | Description The registry key of the elements to add. |
Removes all elements in this tag.
Checks if this tag contains an element with the given id
Returns: true if it contains the element, false otherwise.
Return Type: boolean
Parameter | Type | Description |
---|---|---|
Parameter id | Type ResourceLocation | Description The ID of the element to check. |
Checks if this tag equals the other tag.
Returns: true if the tags are equal, false otherwise.
Return Type: boolean
Parameter | Type | Description |
---|---|---|
Parameter other | Type MCTag | Description The tag to check against. |
Checks if this tag exists.
Returns: true if this tag exists, false otherwise.
Return Type: boolean
Gets the id of this tag.
Returns: The id of this tag.
Return Type: ResourceLocation
Gets the id’s of the elements in this tag.
Returns: The id’s elements in this tag.
Return Type: stdlib.List<ResourceLocation>
Removes the given tags from this tag.
Parameter | Type | Description |
---|---|---|
Parameter tags | Type MCTag[] | Description The tags to remove. |
Removes the elements that correspond to the given ResourceLocation from this tag.
Parameter | Type | Description |
---|---|---|
Parameter elements | Type ResourceLocation[] | Description The registry key of the elements to remove. |
Operators
Checks if this tag contains an element with the given id
Checks if this tag equals the other tag.
Properties
Name | Type | Has Getter | Has Setter | Description |
---|---|---|---|---|
Name exists | Type boolean | Has Getter true | Has Setter false | Description Checks if this tag exists. |
Name id | Type ResourceLocation | Has Getter true | Has Setter false | Description Gets the id of this tag. |
Name idElements | Type stdlib.List<ResourceLocation> | Has Getter true | Has Setter false | Description Gets the id’s of the elements in this tag. |