---
category: swing
folder: SortingAnimations
title: JComboBoxのモデルとしてenumを使用する
tags: [JComboBox, Enum, Animation, SwingWorker]
author: aterai
pubdate: 2007-07-09T14:59:22+09:00
description: JComboBoxのモデルとしてenumを使用します。
image: https://lh6.googleusercontent.com/_9Z4BYR88imo/TQTTcZXYeSI/AAAAAAAAAkY/_frjM9wSJsc/s800/SortingAnimations.png
---
* Summary [#summary]
`JComboBox`のモデルとして`enum`を使用します。
#download(https://lh6.googleusercontent.com/_9Z4BYR88imo/TQTTcZXYeSI/AAAAAAAAAkY/_frjM9wSJsc/s800/SortingAnimations.png)
* Source Code Examples [#sourcecode]
#code(link){{
private static enum SortAlgorithms {
Isort("Insertion Sort"),
Selsort("Selection Sort"),
Shellsort("Shell Sort"),
Hsort("Heap Sort"),
Qsort("Quicksort"),
Qsort2("2-way Quicksort");
private final String description;
private SortAlgorithms(String description) {
this.description = description;
}
@Override public String toString() {
return description;
}
}
JComboBox<SortAlgorithms> algorithmsChoices =
new JComboBox<>(SortAlgorithms.values());
}}
* Description [#explanation]
* Description [#description]
`enum`型で`JComboBox`のモデルを作成しています。上記のコードでは、`Enum#toString()`メソッドをオーバーライドして、`JComboBox`の表示はユーザーに分かりやすい名前になるようにしています。
コード中で、どのアイテムが選択されているかなどを調べる場合などは、例えば以下のようにして使用します。
#code{{
switch ((SortAlgorithms) algorithmsChoices.getSelectedItem()) {
case Isort: isort(number); break;
case Selsort: ssort(number); break;
case Shellsort: shellsort(number); break;
case Hsort: heapsort(number); break;
case Qsort: qsort(0, number - 1); break;
case Qsort2: qsort2(0, number - 1); break;
}
}}
----
- ソートアニメーション自体は%%[http://www.cs.bell-labs.com/cm/cs/pearls/sortanim.html Sorting Algorithm Animations from Programming Pearls]%%のアプレットから基本部分をコピーして`Swing`に移植
-- `SwingWorker`(`JDK 6`以上)を使用したキャンセル機能を追加
-- 全画面の書き換えを止めて移動する円図形の領域のみウェイトを入れて再描画するように変更
* Reference [#reference]
- %%[http://www.cs.bell-labs.com/cm/cs/pearls/sortanim.html Sorting Algorithm Animations from Programming Pearls]%%
- [https://docs.oracle.com/javase/tutorial/uiswing/painting/ Lesson: Performing Custom Painting (The Java™ Tutorials > Creating a GUI With JFC/Swing)]
- [[Enum定数を選択するJRadioButtonのButtonGroupやJComboBoxを作成する>Swing/EnumInputSelect]]
* Comment [#comment]
#comment
#comment