About 105,000 results
Open links in new tab
  1. enum — Support for enumerations — Python 3.14.3 documentation

    2 days ago · Allows Enum members to have attributes without conflicting with member names. The value and name attributes are implemented this way.

  2. Enumeration declaration - cppreference.com

    Aug 14, 2024 · There are two distinct kinds of enumerations: unscoped enumeration (declared with the enum-keyenum) and scoped enumeration (declared with the enum-keyenum class or enum struct).

  3. Enumeration types - C# reference | Microsoft Learn

    Jan 14, 2026 · To define an enumeration type, use the enum keyword and specify the names of enum members: Spring, Summer, Autumn, Winter. By default, the associated constant values of enum …

  4. Enumeration (or enum) in C - GeeksforGeeks

    Jul 29, 2025 · In C, an enumeration (or enum) is a user defined data type that contains a set of named integer constants. It is used to assign meaningful names to integer values, which makes a program …

  5. Java Enums - W3Schools

    An enum is a special "class" that represents a group of constants (unchangeable variables, like final variables). To create an enum, use the enum keyword (instead of class or interface), and separate …

  6. What Is an Enum in Programming Languages? - ThoughtCo

    May 14, 2025 · An enum is a special type that defines a set of named constants in programming. Enums make code easier to read by using names instead of numbers for values. Enums help reduce bugs …

  7. Enum Types (The Java™ Tutorials > Learning the Java Language > …

    An enum type is a special data type that enables for a variable to be a set of predefined constants. The variable must be equal to one of the values that have been predefined for it. Common examples …

  8. Enum - Complete Guide to Enums in All Programming Languages | enum

    Complete enum guide covering Java, Python, C/C++, C#, TypeScript, Rust, Go, and database enums. Learn enum best practices, serialization, naming conventions, and tools.

  9. EasingStyle | Documentation - Roblox Creator Hub

    EasingStyle These enum values are passed to TweenInfo.new () to control the motion of a Tween. The following graphs reflect easing styles for Enum.EasingDirection.In. For graphs reflecting …

  10. Java Enum Types: Complete Guide for Learning the Java Language

    Jan 26, 2026 · We will explore patterns like the strategy-like enum, enum sets and maps, switch expressions, serialization concerns, and testability. By the end, you will be comfortable replacing …