Java enum programming examples

Java Programming Examples: In addition to PHP programming, I've also done a lot of Java programming in my career. While it's a very small piece of the overall Java programming language, one of the topics I've written about has been the Java enum syntax, including my Java enum examples and tutorials on the devdaily.com website.

The basic Java enum syntax is simple, you declare a Java enum like this:

public enum Day
{
  SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY 
}

After that, you're ready to use this Java enum in the rest of your Java program. That's where things start to get interesting, so rather than try to dig into those details, I again refer you to my collection of Java enum examples.

Java programming in Alaska

As I write this blog post, I'm thinking more and more about how to bring computer programming to Alaska. If you have any suggestions on how we can provide affordable computer programming training in Alaska, please drop me a line using the Comments form above.