Skip to content

Commit

Permalink
Small improvement of method description
Browse files Browse the repository at this point in the history
  • Loading branch information
RedstoneFuture committed Oct 14, 2024
1 parent cdb3d70 commit 95875b6
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,19 @@ public static Set<EntityType> getEntityTypes(Set<String> inputSet) {
* This method returns a list of EntityTypes based on the input string. Various formats
* of specifications are supported here:
*
* <li>EntityType-Tag starting with "#" or "tag=" (see <a href="https://jd.papermc.io/paper/1.21.1/org/bukkit/Tag.html">PaperMC Java-Doc</a> and
* <a href="https://minecraft.wiki/w/Tag#Entity_type_tags_2">Minecraft-Wiki</a> for the EntityType Tag lists)</li>
* <ul>
* <li>EntityType-Tag starting with "#" or "tag=" (see <a href="https://minecraft.wiki/w/Tag#Entity_type_tags_2">Minecraft-Wiki</a>
* <i>(Vanilla Minecraft implementation)</i> and <a href="https://jd.papermc.io/paper/1.21.1/org/bukkit/Tag.html">PaperMC Java-Doc</a>
* <i>(Bukkit implementation)</i> for the EntityType-Tag lists)</li>
* <li>Regex via "r="</li>
* <li>ENTITY-TYPE names with wildcards via "*"</li>
* <li>ENTITY-TYPE names</li>
* <li>clean ENTITY-TYPE names with wildcards via "*"</li>
* <li>clean ENTITY-TYPE names</li>
* </ul>
*
* <b>Note:</b> Currently, the expanding <a href="https://jd.papermc.io/paper/1.21.1/io/papermc/paper/tag/EntityTags.html">EntitySetTags</a>
* from PaperMC are not supported here.
*
* <br/><br/>
* Basic-Design by <a href="https://github.com/Phoenix616">Phoenix616</a>
*
* @param input (String) the input String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,16 @@ public static Set<Material> getMaterials(Set<String> inputSet) {
* This method returns a list of Materials based on the input string. Various formats
* of specifications are supported here:
*
* <li>Material-Tag starting with "#" or "tag=" (see <a href="https://jd.papermc.io/paper/1.21.1/org/bukkit/Tag.html">PaperMC Java-Doc</a> and
* <a href="https://minecraft.wiki/w/Tag#Block_tags_2">Minecraft-Wiki</a> for the Material Tag lists)</li>
* <ul>
* <li>Material-Tag starting with "#" or "tag=" (see <a href="https://minecraft.wiki/w/Tag#Block_tags_2">Minecraft-Wiki</a>
* <i>(Vanilla Minecraft implementation)</i> and <a href="https://jd.papermc.io/paper/1.21.1/org/bukkit/Tag.html">PaperMC Java-Doc</a>
* <i>(Bukkit implementation)</i> for the Material-Tag lists)</li>
* <li>Regex via "r="</li>
* <li>MATERIAL names with wildcards via "*"</li>
* <li>MATERIAL names</li>
* <li>clean MATERIAL names with wildcards via "*"</li>
* <li>clean MATERIAL names</li>
* </ul>
*
* <br/><br/>
* Basic-Design by <a href="https://github.com/Phoenix616">Phoenix616</a>
*
* @param input (String) the input String
Expand Down

0 comments on commit 95875b6

Please sign in to comment.