Uses of Interface
net.ygbstudio.powerwp4j.base.extension.enums.FriendlyEnum
Packages that use FriendlyEnum
Package
Description
-
Uses of FriendlyEnum in net.ygbstudio.powerwp4j.base.extension.builders
Methods in net.ygbstudio.powerwp4j.base.extension.builders with type parameters of type FriendlyEnumModifier and TypeMethodDescriptionprotected <E extends FriendlyEnum>
TAbstractPayloadNodeBuilder.add(E propertyEnum, boolean value) Adds a property with the givenpropertyEnumvalue andbooleanvalue to the payload node.protected <E extends FriendlyEnum>
TAbstractPayloadNodeBuilder.add(E propertyEnum, int value) Adds a property with the givenpropertyEnumvalue andintvalue to the payload node.protected <E extends FriendlyEnum>
TAbstractPayloadNodeBuilder.add(E propertyEnum, long value) Adds a property with the givenpropertyEnumvalue andlongvalue to the payload node.protected <E extends FriendlyEnum>
TAbstractPayloadNodeBuilder.add(E propertyEnum, short value) Adds a property with the givenpropertyEnumvalue andshortvalue to the payload node.protected <E extends FriendlyEnum>
TAbstractPayloadNodeBuilder.add(@NotNull CacheKeyEnum propertyEnum, E value) Adds a property with the givenpropertyEnumvalue and avalueenum to the payload node.Methods in net.ygbstudio.powerwp4j.base.extension.builders with parameters of type FriendlyEnumModifier and TypeMethodDescriptionprotected TAbstractPayloadNodeBuilder.add(@NotNull FriendlyEnum propertyEnum, @NotNull Collection<? extends Number> valueArray) Adds an integer array property with the specifiedpropertyEnumvalue andintvalue array to the payload node. -
Uses of FriendlyEnum in net.ygbstudio.powerwp4j.base.extension.enums
Subinterfaces of FriendlyEnum in net.ygbstudio.powerwp4j.base.extension.enumsModifier and TypeInterfaceDescriptioninterfaceThis interface provides a way to create enum constants that represent keys in the JSON local cache and use them with utilities in PowerWP4j.interfaceCacheSubKeyEnum is an interface that extends theFriendlyEnuminterface and is used to represent the keys nested in the values represented byCacheKeyEnumin the local cache.interfaceUnified Enum interface for the WordPress taxonomy/class key markers. objects.interfaceUnified Enum interface for the WordPress class/taxonomy value representation objects.interfaceInterface for comment status enums that provide a unified type for addition of custom and built-in comment statuses.interfaceInterface for post format enums that provide a unified type for addition of custom and built-in formats.interfaceInterface for post status enums that provide a unified type for addition of custom post statuses.interfaceInterface for post type enums that provide a unified type for addition of custom and built-in types.interfaceQueryParamEnum is an interface that promotes a unified type for query parameters and avalue()method to ensure consistency with the design practices of the project.interfaceRestPathEnum is an interface that promotes unified type for rest paths to ensure consistency with the design practices of the project.interfaceAn interface for enum types that represent fields that can be used in a URL.Classes in net.ygbstudio.powerwp4j.base.extension.enums that implement FriendlyEnumModifier and TypeClassDescriptionenumEnumeration that represents the keys for the environment variables required to connect to a WordPress site. -
Uses of FriendlyEnum in net.ygbstudio.powerwp4j.models.schema
Classes in net.ygbstudio.powerwp4j.models.schema that implement FriendlyEnumModifier and TypeClassDescriptionenumEnumeration of possible cache keys for the WordPress REST API cache.enumenumenumEnum class that represents formats in WordPress.enumEnum representing the fields that can be requested in a WordPress REST API path.enumEnum representing different types of WordPress posts.enumEnumeration of standard WordPress query parameters.enumEnum representing various API endpoints and query parameters for WordPress REST API.enumEnum class that represents statuses in WordPress. -
Uses of FriendlyEnum in net.ygbstudio.powerwp4j.models.taxonomies
Classes in net.ygbstudio.powerwp4j.models.taxonomies that implement FriendlyEnumModifier and TypeClassDescriptionenumEnum class for the WordPress cache taxonomy key markers.enumEnum class for the WordPress cache taxonomy value representation. -
Uses of FriendlyEnum in net.ygbstudio.powerwp4j.utils
Methods in net.ygbstudio.powerwp4j.utils with type parameters of type FriendlyEnumModifier and TypeMethodDescriptionstatic <T extends FriendlyEnum>
Optional<T> Helpers.enumFromValue(Class<T> enumType, @Nullable String strEnumKey, boolean ignoreCase) Retrieves an enum constant from a string value, with an option to match irrespectively of case.