Top "Enums" questions

A data type consisting of a set of named values called elements, members or enumerators of the type.

Getting the max value of an enum

How do you get the max value of an enum?

c# enums
How to check If a Enum contain a number?

I have a Enum like this: public enum PromotionTypes { Unspecified = 0, InternalEvent = 1, ExternalEvent = 2, GeneralMailing = 3, VisitBased = 4, PlayerIntroduction = 5, Hospitality = 6 } I want to check …

c# .net enums
How to create ENUM type in SQLite?

I need to convert a table from MySQL to SQLite, but I can't figure out how to convert an enum …

sqlite types enums
Specifying size of enum type in C

Already read through this related question, but was looking for something a little more specific. Is there a way to …

c optimization enums word-size
SQL query to get all values a enum can have

Postgresql got enum support some time ago. CREATE TYPE myenum AS ENUM ( 'value1', 'value2', ); How do I get …

postgresql enums
Pass enums in angular2 view templates

Can we use enums in an angular2 view template? <div class="Dropdown" dropdownType="instrument"></div> passes …

enums angular angular2-template
Should enums in C# have their own file?

I have a class which uses an enumeration, the enum is currently in its own file which seems wasteful. What …

c# coding-style enums
How to use enums with JPA

I have an existing database of a film rental system. Each film has a has a rating attribute. In SQL …

java jpa enums toplink
How to make key value like enum in java

I need to make an Enum containing some strings with spaces and their values in int like: public enum status{ …

java json hibernate enums alpacajs
Is it possible to use Swift's Enum in Obj-C?

I'm trying to convert some of my Obj-C class to Swift. And some other Obj-C classes still using enum in …

objective-c enums swift