ManifestFormat

enum ManifestFormat : ProtocolMessageEnum
Enumerates supported asset manifest formats. These are all powered by Protocol Buffers' encoding tools. For maximum
performance, use the binary format.
Protobuf enum elide.assets.ManifestFormat

Entries

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Properties

Link copied to clipboard
val BINARY_VALUE: Int = 1
Specifies a binary-encoded asset manifest.
BINARY = 1;
Link copied to clipboard
val JSON_VALUE: Int = 2
Specifies a JSON-encoded asset manifest.
JSON = 2;
Link copied to clipboard
The manifest format was unspecified or unrecognized; this value should not be used by regular code.
MANIFEST_FORMAT_UNSPECIFIED = 0;
Link copied to clipboard
val TEXT_VALUE: Int = 3
Specifies a text-encoded asset manifest.
TEXT = 3;

Functions

Link copied to clipboard
open fun forNumber(value: Int): ManifestFormat
Link copied to clipboard
fun getDescriptor(): Descriptors.EnumDescriptor
Link copied to clipboard
fun getDescriptorForType(): Descriptors.EnumDescriptor
Link copied to clipboard
fun getNumber(): Int
Link copied to clipboard
fun getValueDescriptor(): Descriptors.EnumValueDescriptor
Link copied to clipboard
open fun internalGetValueMap(): Internal.EnumLiteMap<ManifestFormat>
Link copied to clipboard
open fun valueOf(desc: Descriptors.EnumValueDescriptor): ManifestFormat
open fun valueOf(value: Int): ManifestFormat

open fun valueOf(name: String): ManifestFormat

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.