EnumItem
Overview
Description
The EnumItem
is a component that represents a single value within an enumeration (enum). EnumItems are used to define constants in a structured way, making the code more readable and maintainable.
Properties
Name
string
This is the name of the EnumItem
. It acts as a unique identifier within its EnumType
and is used in the code for referencing this specific value.
Code Samples
local EnumItem = Enum.HumanoidStateType.Running
print(EnumItem.Name)
Value
number
The Value
property is a numerical representation assigned to the EnumItem
. It is primarily used internally or for comparison purposes.
Code Samples
local EnumItem = Enum.HumanoidStateType.Running
print(EnumItem.Name, EnumItem.Value)
EnumType
Enum
The EnumType
property indicates the enumeration to which this EnumItem
belongs. It helps in identifying the group or category of the EnumItem
.
Code Samples
local EnumItem = Enum.HumanoidStateType.Running
print(EnumItem.EnumType)
Constructors
Methods
Last updated