jp.sourceforge.livez.vodafone
列挙型 VodafoneType

java.lang.Object
  上位を拡張 java.lang.Enum<VodafoneType>
      上位を拡張 jp.sourceforge.livez.vodafone.VodafoneType
すべての実装されたインタフェース:
Serializable, Comparable<VodafoneType>

public enum VodafoneType
extends Enum<VodafoneType>

ボーダフォン端末の詳細な型を表す列挙型です。

作成者:
杉澤 浩二

列挙型定数の概要
C2
          C2型端末
C3
          C3型端末
C4
          C4型端末
P4_1
          P4(1)型端末
P4_2
          P4(2)型端末
P5
          P5型端末
P6
          P6型端末
P7
          P7型端末
S_3GC
          3GC型端末(S)
UNKNOWN
          不明な型
UNKNOWN_C
          不明なC型端末
UNKNOWN_P
          不明なP型端末
W
          W型端末
X_3GC
          3GC型端末(X)
 
メソッドの概要
 VodafoneCategoryType getCategoryType()
          ボーダフォン端末の型を返します。
static VodafoneType valueOf(String name)
          指定した名前を持つこの型の列挙型定数を返します。
static VodafoneType[] values()
          この列挙型の定数を含む配列を宣言されている順序で返します。
 
クラス java.lang.Enum から継承されたメソッド
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
クラス java.lang.Object から継承されたメソッド
finalize, getClass, notify, notifyAll, wait, wait, wait
 

列挙型定数の詳細

C2

public static final VodafoneType C2
C2型端末


C3

public static final VodafoneType C3
C3型端末


C4

public static final VodafoneType C4
C4型端末


UNKNOWN_C

public static final VodafoneType UNKNOWN_C
不明なC型端末


P4_1

public static final VodafoneType P4_1
P4(1)型端末


P4_2

public static final VodafoneType P4_2
P4(2)型端末


P5

public static final VodafoneType P5
P5型端末


P6

public static final VodafoneType P6
P6型端末


P7

public static final VodafoneType P7
P7型端末


UNKNOWN_P

public static final VodafoneType UNKNOWN_P
不明なP型端末


W

public static final VodafoneType W
W型端末


X_3GC

public static final VodafoneType X_3GC
3GC型端末(X)


S_3GC

public static final VodafoneType S_3GC
3GC型端末(S)


UNKNOWN

public static final VodafoneType UNKNOWN
不明な型

メソッドの詳細

values

public static final VodafoneType[] values()
この列挙型の定数を含む配列を宣言されている順序で返します。 このメソッドは次のようにして定数を反復するために使用できます:
for(VodafoneType c : VodafoneType.values())
        System.out.println(c);

戻り値:
この列挙型の定数を宣言されている順序で含む配列

valueOf

public static VodafoneType valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。 文字列は、この型の列挙型定数を宣言するのに使用した識別子と厳密に 一致している必要があります (余分な空白文字を含めることはできません)。

パラメータ:
name - 返される列挙型定数の名前
戻り値:
指定された名前を持つ列挙型定数
例外:
IllegalArgumentException - 指定された名前を持つ定数を この列挙型が持っていない場合

getCategoryType

public VodafoneCategoryType getCategoryType()
ボーダフォン端末の型を返します。

戻り値:
ボーダフォン端末の型


Copyright © 2005-2006 Kouji Sugisawa. All rights reserved.