# Enum

## Overview

Enum은 미리 정해진 상수들을 묶어 하나의 그룹으로 표현하는 데이터 타입으로, 특정 범주에 속하는 이름 기반 값들을 체계적으로 정의할 때 활용됩니다.

## Constructors

## Properties

## Methods

### GetEnumItems

Enum에 포함된 모든 항목을 배열로 반환하여, 해당 열거형이 어떤 선택지들을 포함하고 있는지 확인할 수 있습니다.

#### Parameters

#### Return

| `array` | Enum의 모든 항목을 포함하는 배열입니다. |
| ------- | ------------------------ |

#### Code Samples

```lua
local HumanoidStateTypeList = Enum.HumanoidStateType:GetEnumItems()

for i, stateType in ipairs(HumanoidStateTypeList) do
    print("Enum.HumanoidStateType." .. stateType.Name)
end
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.overdare.com/korean/development/api-reference/datatype/enum.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
