程序包 weka.core
Enum Class TechnicalInformation.Type
- 所有已实现的接口:
Serializable
,Comparable<TechnicalInformation.Type>
,Constable
- 封闭类:
- TechnicalInformation
the different types of information
-
嵌套类概要
从类继承的嵌套类/接口 java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
枚举常量概要
枚举常量枚举常量说明An article from a journal or magazine.A book with an explicit publisher.A work that is printed and bound, but without a named publisher or sponsoring institution.The same as inproceedings.A part of a book, which may be a chapter (or section or whatever) and/or a range of pages.A part of a book having its own title.An article in a conference proceedings.Technical documentation.A Master's thesis.Use this type when nothing else fits.A PhD thesis.The proceedings of a conference.A report published by a school or other institution, usually numbered within a series.A document having an author and title, but not formally published. -
方法概要
修饰符和类型方法说明returns the comment stringreturns the display stringtoString()
returns the display string of the Typestatic TechnicalInformation.Type
Returns the enum constant of this class with the specified name.static TechnicalInformation.Type[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.从类继承的方法 java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
-
枚举常量详细资料
-
ARTICLE
An article from a journal or magazine. -
BOOK
A book with an explicit publisher. -
BOOKLET
A work that is printed and bound, but without a named publisher or sponsoring institution. -
CONFERENCE
The same as inproceedings. -
INBOOK
A part of a book, which may be a chapter (or section or whatever) and/or a range of pages. -
INCOLLECTION
A part of a book having its own title. -
INPROCEEDINGS
An article in a conference proceedings. -
MANUAL
Technical documentation. -
MASTERSTHESIS
A Master's thesis. -
MISC
Use this type when nothing else fits. -
PHDTHESIS
A PhD thesis. -
PROCEEDINGS
The proceedings of a conference. -
TECHREPORT
A report published by a school or other institution, usually numbered within a series. -
UNPUBLISHED
A document having an author and title, but not formally published.
-
-
方法详细资料
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- 返回:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- 参数:
name
- 要返回的枚举常量的名称。- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- 如果参数为空值
-
getDisplay
returns the display string- 返回:
- the display string
-
getComment
returns the comment string- 返回:
- the comment string
-
toString
returns the display string of the Type- 覆盖:
toString
在类中Enum<TechnicalInformation.Type>
- 返回:
- the display string
-