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
Copy
import crafttweaker.api.text.Component;

Implemented Interfaces

Link to implemented-interfaces

Component implements the following interfaces. That means all methods defined in these interfaces are also available in Component

Name: empty

Return Type: MutableComponent

ZenScript
Copy
// Component.empty() as MutableComponent

Component.empty();

Name: keybind

Return Type: MutableComponent

ZenScript
Copy
Component.keybind(name as string) as MutableComponent
ParameterType
Parameter
name
Type
string

Name: literal

Return Type: MutableComponent

ZenScript
Copy
Component.literal(content as string) as MutableComponent
ParameterType
Parameter
content
Type
string

Name: nullToEmpty

Return Type: Component

ZenScript
Copy
Component.nullToEmpty(content as string?) as Component
ParameterType
Parameter
content
Type
string?

Name: score

Return Type: MutableComponent

ZenScript
Copy
Component.score(name as string, objective as string) as MutableComponent
ParameterType
Parameter
name
Type
string
Parameter
objective
Type
string

Name: selector

Return Type: MutableComponent

ZenScript
Copy
Component.selector(pattern as string, separator as Component?) as MutableComponent
ParameterTypeOptional
Parameter
pattern
Type
string
Optional
false
Parameter
separator
Type
Component?
Optional
true

Name: translatable

Return Type: MutableComponent

ZenScript
Copy
Component.translatable(content as string, args as Component[]) as MutableComponent
ParameterType
Parameter
content
Type
string
Parameter
args
Type
Component[]

Name: translatable

Return Type: MutableComponent

ZenScript
Copy
Component.translatable(content as string, args as string[]) as MutableComponent
ParameterType
Parameter
content
Type
string
Parameter
args
Type
string[]

Name: copy

Return Type: MutableComponent

ZenScript
Copy
// Component.copy() as MutableComponent

myComponent.copy();

Name: getContents

Return Type: ComponentContents

ZenScript
Copy
// Component.getContents() as ComponentContents

myComponent.getContents();

Name: getSiblings

Return Type: stdlib.List<Component>

ZenScript
Copy
// Component.getSiblings() as stdlib.List<Component>

myComponent.getSiblings();

Name: getString

Return Type: string

ZenScript
Copy
Component.getString(maxLength as int) as string
ParameterType
Parameter
maxLength
Type
int

Name: getStyle

Return Type: Style

ZenScript
Copy
// Component.getStyle() as Style

myComponent.getStyle();

Name: plainCopy

Return Type: MutableComponent

ZenScript
Copy
// Component.plainCopy() as MutableComponent

myComponent.plainCopy();
NameTypeHas GetterHas Setter
Name
contents
Type
ComponentContents
Has Getter
true
Has Setter
false
Name
siblings
Type
stdlib.List<Component>
Has Getter
true
Has Setter
false
Name
style
Type
Style
Has Getter
true
Has Setter
false