The ReflectionEnum class

(PHP 8 >= 8.1.0)

Introduction

The ReflectionEnum class reports information about an Enum.

Class synopsis

class ReflectionEnum extends ReflectionClass {
/* Inherited constants */
public const int ReflectionClass::IS_FINAL;
/* Inherited properties */
public string $name;
/* Methods */
public __construct(object|string $objectOrClass)
public getCase(string $name): ReflectionEnumUnitCase
public getCases(): array
public hasCase(string $name): bool
public isBacked(): bool
/* Inherited methods */
public static ReflectionClass::export(mixed $argument, bool $return = false): string
public ReflectionClass::getAttributes(?string $name = null, int $flags = 0): array
public ReflectionClass::getConstant(string $name): mixed
public ReflectionClass::getConstants(?int $filter = null): array
public ReflectionClass::getDocComment(): string|false
public ReflectionClass::getEndLine(): int|false
public ReflectionClass::getExtensionName(): string|false
public ReflectionClass::getFileName(): string|false
public ReflectionClass::getMethods(?int $filter = null): array
public ReflectionClass::getName(): string
public ReflectionClass::getProperties(?int $filter = null): array
public ReflectionClass::getReflectionConstants(?int $filter = null): array
public ReflectionClass::getStartLine(): int|false
public ReflectionClass::getStaticPropertyValue(string $name, mixed &$def_value = ?): mixed
public ReflectionClass::hasConstant(string $name): bool
public ReflectionClass::hasMethod(string $name): bool
public ReflectionClass::hasProperty(string $name): bool
public ReflectionClass::isInstance(object $object): bool
public ReflectionClass::newInstance(mixed ...$args): object
public ReflectionClass::newInstanceArgs(array $args = []): ?object
public ReflectionClass::setStaticPropertyValue(string $name, mixed $value): void
}

See Also

Table of Contents

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top