com.hankcs.hanlp.dictionary.py
枚举 Head

java.lang.Object
  继承者 java.lang.Enum<Head>
      继承者 com.hankcs.hanlp.dictionary.py.Head
所有已实现的接口:
Serializable, Comparable<Head>

public enum Head
extends Enum<Head>

拼音输入法头

作者:
hankcs

枚举常量摘要
a
           
b
           
c
           
ch
           
d
           
e
           
f
           
g
           
h
           
j
           
k
           
l
           
m
           
n
           
none
           
o
           
p
           
q
           
r
           
s
           
sh
           
t
           
w
           
x
           
y
           
z
           
zh
           
 
方法摘要
static Head valueOf(String name)
          返回带有指定名称的该类型的枚举常量。
static Head[] values()
          按照声明该枚举类型的常量的顺序,返回 包含这些常量的数组。
 
从类 java.lang.Enum 继承的方法
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
从类 java.lang.Object 继承的方法
getClass, notify, notifyAll, wait, wait, wait
 

枚举常量详细信息

a

public static final Head a

b

public static final Head b

c

public static final Head c

ch

public static final Head ch

d

public static final Head d

e

public static final Head e

f

public static final Head f

g

public static final Head g

h

public static final Head h

j

public static final Head j

k

public static final Head k

l

public static final Head l

m

public static final Head m

n

public static final Head n

o

public static final Head o

p

public static final Head p

q

public static final Head q

r

public static final Head r

s

public static final Head s

sh

public static final Head sh

t

public static final Head t

w

public static final Head w

x

public static final Head x

y

public static final Head y

z

public static final Head z

zh

public static final Head zh

none

public static final Head none
方法详细信息

values

public static Head[] values()
按照声明该枚举类型的常量的顺序,返回 包含这些常量的数组。该方法可用于迭代 常量,如下所示:
for (Head c : Head.values())
    System.out.println(c);


valueOf

public static Head valueOf(String name)
返回带有指定名称的该类型的枚举常量。 字符串必须与用于声明该类型的枚举常量的 标识符完全匹配。(不允许有多余 的空格。)

参数:
name - 要返回的枚举常量的名称。
返回:
返回带有指定名称的枚举常量
抛出:
如果该枚举类型没有带有指定名称的常量, - 则抛出 IllegalArgumentException


Copyright © 2014–2015 鐮佸啘鍦�/a>. All rights reserved.