Импорт класса

Link to импорт-класса

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
Copy
import crafttweaker.api.commands.custom.MCSuggestions;

Name: create

Return Type: MCSuggestions

ZenScript
Copy
MCSuggestions.create(command as string, suggestions as Collection<MCSuggestion>) as MCSuggestions
ПараметрТипОписание
Параметр
command
Тип
string
Описание
No Description Provided
Параметр
предложения
Тип
Collection<MCSuggestion>
Описание
No Description Provided

Name: empty

Return Type: MCSuggestions

ZenScript
Copy
// MCSuggestions.empty() as MCSuggestions

MCSuggestions.empty();

Name: merge

Return Type: MCSuggestions

ZenScript
Copy
MCSuggestions.merge(command as string, input as Collection<MCSuggestions>) as MCSuggestions
ПараметрТипОписание
Параметр
command
Тип
string
Описание
No Description Provided
Параметр
input
Тип
Collection<MCSuggestions>
Описание
No Description Provided
Тип результатаЯвляется неявным
Тип результата
string
Является неявным
true

Name: equals

Return Type: boolean

ZenScript
Copy
MCSuggestions.equals(o as Object) as boolean
ПараметрТипОписание
Параметр
o
Тип
Object
Описание
No Description Provided

Name: getList

Return Type: stdlib.List<MCSuggestion>

ZenScript
Copy
// MCSuggestions.getList() as stdlib.List<MCSuggestion>

myMCSuggestions.getList();

Name: getRange

Return Type: MCStringRange

ZenScript
Copy
// MCSuggestions.getRange() as MCStringRange

myMCSuggestions.getRange();

Name: hashCode

Return Type: int

ZenScript
Copy
// MCSuggestions.hashCode() as int

myMCSuggestions.hashCode();

Name: isEmpty

Return Type: boolean

ZenScript
Copy
// MCSuggestions.isEmpty() as boolean

myMCSuggestions.isEmpty();

Name: toString

Return Type: string

ZenScript
Copy
// MCSuggestions.toString() as string

myMCSuggestions.toString();

Операторы

Link to операторы

Name: EQUALS

ZenScript
Copy
myMCSuggestions == o как объект