class FeedType extends AbstractEnum (View source)

Provides a set of known, allowable feed types. This is most often used for determining which feed types a particular middleware should apply to.

Constants

ALL

JSON

HTML

XML

Methods

static array
introspect()

Introspects the Enum for its values.

static array
introspectKeys()

Introspects the Enum for its keys.

static bool
hasValue(string $value)

Determines if the value is one of the Enum values of this type.

Details

static array introspect()

Introspects the Enum for its values.

Return Value

array An associative array where the constant name is the key and the constant value is the value.

static array introspectKeys()

Introspects the Enum for its keys.

Return Value

array An indexed array of constant names.

static bool hasValue(string $value)

Determines if the value is one of the Enum values of this type.

Parameters

string $value The value to compare.

Return Value

bool Whether or not the value is one of the Enum values of this type. A value of true means that the value is one of the Enum values. A value of false means that the value is NOT one of the Enum values.