0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Java SE Gold で勉強したことメモ(Enum編)

Posted at

JavaのEnum型のメソッドで以下のようなものがあるみたいです。

EnumSample.java
public enum EnumSample{
    Gold,Silver,Bronze
}
Main.java
public class Main{
    public static void main(String[] args){
        //EnumSampleの列挙子を配列型で返すvaluesメソッド
        for(EnumSample e: EnumSample.values()){
            System.out.println(e);
        }
    }
}

Java SEのAPIにもvaluesメソッドは載っていないようです。

使いどころあるかもしれなさそうだったのでメモしておきます。
間違っている箇所があれば教えてください。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?