ReflectionEnum 类

(PHP 8 >= 8.1.0)

简介

ReflectionEnum 类报告了一个 Enum 的信息。

类摘要

class ReflectionEnum extends ReflectionClass implements Reflector {
/* 继承的常量 */
const integer ReflectionClass::IS_FINAL = 64;
/* 继承的属性 */
public $name;
/* 方法 */
public getCase(string $name): ReflectionEnumUnitCase
public getCases(): array
public hasCase(string $name): bool
public isBacked(): bool
/* 继承的方法 */
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::getMethods(int $filter = ?): array
public ReflectionClass::getName(): string
public ReflectionClass::getProperties(int $filter = ?): array
public ReflectionClass::getReflectionConstants(?int $filter = null): array
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::implementsInterface(string $interface): bool
public ReflectionClass::isInstance(object $object): bool
public ReflectionClass::isSubclassOf(string $class): bool
public ReflectionClass::newInstance(mixed $args, mixed $... = ?): object
public ReflectionClass::newInstanceArgs(array $args = ?): object
public ReflectionClass::setStaticPropertyValue(string $name, string $value): void
}

参见

目录

7i24.Com