GuestLanguage

enum GuestLanguage : ProtocolMessageEnum
# Guest Language

Enumerates known guest programming languages, which may be used alongside JVM technologies in an Elide application.
This list may grow over time.
Protobuf enum elide.meta.GuestLanguage

Entries

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

Properties

Link copied to clipboard
Guest language: JavaScript.
JAVASCRIPT = 1;
Link copied to clipboard
val JVM_VALUE: Int = 2
Guest language: JVM.
JVM = 2;
Link copied to clipboard
val LLVM_VALUE: Int = 4
Guest language: LLVM.
LLVM = 4;
Link copied to clipboard
No guest language is available.
NO_GUEST_ENABLED = 0;
Link copied to clipboard
val PYTHON_VALUE: Int = 5
Guest language: Python.
PYTHON = 5;
Link copied to clipboard
val RUBY_VALUE: Int = 6
Guest language: Ruby.
RUBY = 6;
Link copied to clipboard
val WASM_VALUE: Int = 3
Guest language: WASM.
WASM = 3;

Functions

Link copied to clipboard
open fun forNumber(value: Int): GuestLanguage
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<GuestLanguage>
Link copied to clipboard
open fun valueOf(desc: Descriptors.EnumValueDescriptor): GuestLanguage
open fun valueOf(value: Int): GuestLanguage

open fun valueOf(name: String): GuestLanguage

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.