MCSuggestion
Link to mcsuggestion
Importing the class
Link to 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.
ZenScript Copyimport crafttweaker.api.commands.custom.MCSuggestion;
Casters
Link to casters
Result type | Is Implicit |
---|---|
Result type string | Is Implicit true |
Methods
Link to methods
Name: apply
Return Type: string
ZenScript CopyMCSuggestion.apply(input as string) as string
Parameter | Type | Description |
---|---|---|
Parameter input | Type string | Description No Description Provided |
Name: compareTo
Return Type: int
ZenScript CopyMCSuggestion.compareTo(o as MCSuggestion) as int
Parameter | Type | Description |
---|---|---|
Parameter o | Type MCSuggestion | Description No Description Provided |
Name: compareToIgnoreCase
Return Type: int
ZenScript CopyMCSuggestion.compareToIgnoreCase(b as MCSuggestion) as int
Parameter | Type | Description |
---|---|---|
Parameter b | Type MCSuggestion | Description No Description Provided |
Name: equals
Return Type: boolean
ZenScript CopyMCSuggestion.equals(o as Object) as boolean
Parameter | Type | Description |
---|---|---|
Parameter o | Type Object | Description No Description Provided |
Name: expandWith
Return Type: MCSuggestion
ZenScript CopyMCSuggestion.expandWith(command as string, range as MCStringRange) as MCSuggestion
Parameter | Type | Description |
---|---|---|
Parameter command | Type string | Description No Description Provided |
Parameter range | Type MCStringRange | Description No Description Provided |
Name: getRange
Return Type: MCStringRange
ZenScript Copy// MCSuggestion.getRange() as MCStringRange
myMCSuggestion.getRange();
Name: getText
Return Type: string
ZenScript Copy// MCSuggestion.getText() as string
myMCSuggestion.getText();
Name: getTooltip
Return Type: string
ZenScript Copy// MCSuggestion.getTooltip() as string
myMCSuggestion.getTooltip();
Name: hashCode
Return Type: int
ZenScript Copy// MCSuggestion.hashCode() as int
myMCSuggestion.hashCode();
Name: toString
Return Type: string
ZenScript Copy// MCSuggestion.toString() as string
myMCSuggestion.toString();
Operators
Link to operators
Name: EQUALS
ZenScript CopymyMCSuggestion == o as Object