程序包 org.bukkit.packs
接口 DataPack
- 所有超级接口:
Keyed
Represents a data pack.
- 另请参阅:
-
嵌套类概要
修饰符和类型接口说明static enum
Show the compatibility of the data pack with the server.static enum
Represent the source of a data pack. -
方法概要
修饰符和类型方法说明Gets the compatibility of this data pack with the server.Gets the description of the data pack.int
Gets the maximum supported pack format.int
Gets the minimum supported pack format.int
Gets the pack format.Gets a set of features requested by this data pack.Gets the source of this data pack.getTitle()
Gets the title of the data pack.boolean
Gets if the data pack is enabled on the server.boolean
Gets if the data pack is required on the server.
-
方法详细资料
-
getTitle
Gets the title of the data pack.- 返回:
- the title
-
getDescription
Gets the description of the data pack.- 返回:
- the description
-
getPackFormat
int getPackFormat()Gets the pack format.
Pack formats are non-standard and unrelated to the version of Minecraft. For a list of known pack versions, see the Minecraft Wiki.- 返回:
- the pack version
- 另请参阅:
-
getMinSupportedPackFormat
int getMinSupportedPackFormat()Gets the minimum supported pack format. If the data pack does not specify a minimum supported format,getPackFormat()
is returned.
Pack formats are non-standard and unrelated to the version of Minecraft. For a list of known pack versions, see the Minecraft Wiki.- 返回:
- the min pack version supported
-
getMaxSupportedPackFormat
int getMaxSupportedPackFormat()Gets the maximum supported pack format. If the data pack does not specify a maximum supported format,getPackFormat()
is returned.
Pack formats are non-standard and unrelated to the version of Minecraft. For a list of known pack versions, see the Minecraft Wiki.- 返回:
- the max pack version supported
-
isEnabled
boolean isEnabled()Gets if the data pack is enabled on the server.- 返回:
- True if is enabled
-
isRequired
boolean isRequired()Gets if the data pack is required on the server.- 返回:
- True if is required
-
getCompatibility
Gets the compatibility of this data pack with the server.- 返回:
- an enum
-
getRequestedFeatures
Gets a set of features requested by this data pack.- 返回:
- a set of features
-
getSource
Gets the source of this data pack.- 返回:
- the source
-