public class ItemHint extends java.lang.Object implements java.lang.Comparable<ItemHint>
ItemMetadata
. Defines the list of possible values for a
particular item as ItemHint.ValueHint
instances.
The name
of the hint is the name of the related property with one major
exception for map types as both the keys and values of the map can have hints. In such
a case, the hint should be suffixed by ".keys" or ".values" respectively. Creating a
hint for a map using its property name is therefore invalid.
限定符和类型 | 类和说明 |
---|---|
static class |
ItemHint.ValueHint
A hint for a value.
|
static class |
ItemHint.ValueProvider
A value provider.
|
构造器和说明 |
---|
ItemHint(java.lang.String name,
java.util.List<ItemHint.ValueHint> values,
java.util.List<ItemHint.ValueProvider> providers) |
限定符和类型 | 方法和说明 |
---|---|
int |
compareTo(ItemHint other) |
java.lang.String |
getName() |
java.util.List<ItemHint.ValueProvider> |
getProviders() |
java.util.List<ItemHint.ValueHint> |
getValues() |
static ItemHint |
newHint(java.lang.String name,
ItemHint.ValueHint... values) |
java.lang.String |
toString() |
public ItemHint(java.lang.String name, java.util.List<ItemHint.ValueHint> values, java.util.List<ItemHint.ValueProvider> providers)
public static ItemHint newHint(java.lang.String name, ItemHint.ValueHint... values)
public java.lang.String getName()
public java.util.List<ItemHint.ValueHint> getValues()
public java.util.List<ItemHint.ValueProvider> getProviders()
public java.lang.String toString()
toString
在类中 java.lang.Object