What is the translation of " ENUM " in English?

Examples of using Enum in Spanish and their translations into English

{-}
  • Colloquial category close
  • Official category close
Especifique la lista ENUM en orden alfabético.
Specify the ENUM list in alphabetic order.
Admite ENUM E.164 si es compatible con la centralita.
ENUM Support E.164 if supported by PBX.
La sintaxis de la instrucción Enum es el siguiente.
The syntax for the Enum statement is as follows.
Los valores ENUM se representan internamente como enteros.
ENUM values are represented internally as integers.
Puede tener hasta 255 columnas ENUM y SET en una tabla.
You can have up to 255 ENUM and SET columns in one table.
ENUM- Una enumeración, que es un término de lujo para la lista.
ENUM- An enumeration, which is a fancy term for list.
CHART_MODE Tipo de gráfico(velas,barras o líneas) enum ENUM_CHART_MODE.
CHART_MODE Chart type(candlesticks,bars or line) enum ENUM_CHART_MODE.
Todos los valores ENUM y SET deben especificarse como cadenas.
All ENUM and SET values must be specified as strings.
En JDK 5, un nuevo tipo de datos se agregó al lenguaje Java,denominado enum.
In JDK 5, a new data type was added to the Java language,called enum.
Si devuelvo un enum, Solo me dan valores enteros en web3. js.
If I return an enum, I only get integer values in web3. js.
El código de error o advertencia asociado con cada mensaje de evento.Severity Enum.
The error or warning code associated with each event message.Severity Enum.
Una columna ENUM puede tener un máximo de 65,535 valores distintos.
An ENUM column can have a maximum of 65,535 distinct values.
Proporciona diferentes clases de manejo de tipos tales como integer, float,bool, enum y string.
It provides different typehandling classes as such as integer, float,bool, enum and string.
Es decir, después de la palabra clave enum siempre hay que indicar un nombre único.
That is, a unique name must be always specified after the enum keyword.
ENUM es un sistema de mapeo de números de teléfono estandarizado por RFC2916 y RFC6116.
ENUM is a system for telephone number mapping standardized by RFC2916 and RFC6116.
Haga que los archivos glib_mkenums() dependan del archivo enum de la fuente(Milan Crha).
Make glib_mkenums() files depend on the source enum file(Milan Crha).
ENUM Resolver 1.2.1 Recuperar SIP dirección de punto final de un número de teléfono especificado.
ENUM Resolver 1.2.1 Retrieve SIP endpoint address for a specified phone number.
El límite no se aplica a la longitud de la cadena enum literal, sino a definición de la tabla del número de valores enum.
The limit is not on the length of the literal enum string, but rather on the table definition for number of enum values.
El último conversor que vamos a implementar nos permitirá mostrar al usuario los valores de una propiedad de tipo enum traducidos al lenguaje actual.
The last converter that we will implement allows us to show the user the property values of type enum translated to the current language.
La declaración Enum declara una enumeración y define los valores de sus miembros.
The Enum statement declares an enumeration and defines the values of its members.
La única seguridad que C++03 proporciona es que un número entero o un valor de un tipo enum no se convierte implícitamente a otro tipo enum.
The only safety that C++03 provides is that an integer or a value of one enum type does not convert implicitly to another enum type.
Las propiedades de tipo enum presentarán una lista desplegable con los posibles valores de la enumeración.
The properties of enum type have a drop-down list with the possible enumeration values.
Creo que la primera lección de TypeScript es conocer los tipos de datos admitidos, que son: boolean, number, string,array, enum, any, y void.
The first lecture you need to know about TypeScript is related to data types, and the basic types are: boolean, number, string,array, enum, any, and void.
Me gusta la simplificación de tipos básicos, junto con las matrices( array)y los enumeradores( enum), un tipo que puede ser cualquier cosa( any), y otro que no devuelve nada void.
I like this simplification of types,plus arrays and enum, a type that can be whatever( any), and another one that return nothing void.
Main Los tipos de datos usados en MQL4/MQL5 son: entero(char, short, int, long, uchar, ushort, uint, ulong); Booleano o lógico(bool); literal(ushort); cadena(string); punto flotante(double, float); color(color); fecha y hora(datetime);enumeración enum.
Main data types used in MQL4/MQL5: integers(char, short, int, long, uchar, ushort, uint, ulong); Boolean or logical(bool); literals(ushort); strings(string); floating point(double, float); color(color); date and time(datetime);enumeration enum.
Todos los procesos comparten las siguientes variables, siendo n el número de hebras. enum estado{IDLE, ESPERANDO, ACTIVO}; estado flags; int turno; A la variable turno se le asigna aleatoriamente un valor entre 0 y n-1 al inicio del algoritmo.
All the n-processes share the following variables: enum pstate{IDLE, WAITING, ACTIVE}; pstate flags; int turn; The variable turn is set arbitrarily to a number between 0 and n-1 at the start of the algorithm.
No es necesario especificar explícitamente los tipos de las constantes cuando el compilador infiere sus tipos desde el lado derecho de las asignaciónes: enum fact_7 Factorial!(7); Este es un ejemplo de una función en tiempo de ejecución.
The types of constants need not be specified explicitly as the compiler infers their types from the right-hand sides of assignments: enum fact_7 Factorial!(7); This is an example of compile time function execution.
Esto es expresado usando la declaración enum class(enum struct también es aceptado como un sinónimo): enum class Enumeracion{ Valor1, Valor2, Valor3 100, Valor4/* 101*/}; Esta enumeración es de tipo seguro; los valores de enum class no son convertidos implícitamente a números enteros.
This is expressed using the enum class(enum struct is also accepted as a synonym) declaration:enum class Enumeration{ Val1, Val2, Val3 100, Val4// 101}; This enumeration is type-safe.
Por defecto, comoen el caso anterior, es int, pero puede ser especificado explícitamente a un tipo diferente: enum class Enumeracion2: unsigned int{Valor1, Valor2}; El ámbito de la enumeración también está definido como el ámbito del nombre de la enumeración.
The default type is int;this can be overridden to a different integral type as can be seen in this example: enum class Enum2: unsigned int{Val1, Val2}; With old-style enumerations the values are placed in the outer scope.
Adicionalmente, C++11 permitirá que las enumeraciones estándar proporcionen un ámbito explícito así comola definición del tipo subyacente: enum Enumeracion3: unsigned long{Valor1 1, Valor2}; Los nombres del enumerador son definidos en el ámbito de la enumeración(Enumeración3:: Valor1), pero para la compatibilidad hacia atrás, los nombres del enumerador también son colocados en el ámbito de encerrado.
There is also a transitional syntax to allow old-style enumerations to provide explicit scoping, andthe definition of the underlying type: enum Enum3: unsigned long{Val1 1, Val2}; In this case the enumerator names are defined in the enumeration's scope(Enum3:: Val1), but for backwards compatibility they are also placed in the enclosing scope.
Results: 60, Time: 0.0346

How to use "enum" in a Spanish sentence

Faux' blog: More Java Enum fun.
Associating custom types with enum cases.
This enum describes QGraphicsItem's cache modes.
NORMAL Enum The normal text alignment.
Unmanaged, delegate and enum type constraints.
Remove trailing commas from enum lists.
This enum type describes edit confirmations.
This enum type describes edit operations.
SUPERSCRIPT Enum The superscript text alignment.
SUBSCRIPT Enum The subscript text alignment.

How to use "enum" in an English sentence

WARNING: Enum for internal use ONLY.
Julie talks about enum support in.
Enum for specifying the UltraGridColumnChooser.MultipleBandSupport property.
Allow private enum variants, as-is today.
The enum values are shown here.
Unmanaged, delegate and enum type constraints.
Lets test our ThereCanBeOnlyOne enum singleton.
This enum defines keypad mode selection.
Enum less memory than actor reference?
This enum type describes edit operations.
Show more

Top dictionary queries

Spanish - English