Java Enum - Full Simple Tutorial

Опубликовано: 29 Сентябрь 2024
на канале: Jack Hodkinson
3,561
145

Learn how to use enum in Java with code examples of all advanced features including constructors, methods, and switch expressions (Java 12). This tutorial explains when to use enums in Java, the benefits that enum provides compared to normal classes, and how to create your own enum.

You can support me on Patreon:   / jackhodkinson  

00:00 Introduction / example use case for enums
01:40 Definition and syntax
02:21 Switch expressions with enums
03:08 Enum::valueOf(String)
03:20 Enums implement Comparable
04:33 Adding methods to enums
05:35 Enum constructors