Package weka.core
Enum Class TechnicalInformation.Type
- All Implemented Interfaces:
Serializable
,Comparable<TechnicalInformation.Type>
,Constable
- Enclosing class:
- TechnicalInformation
the different types of information
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAn 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. -
Method Summary
Modifier and TypeMethodDescriptionreturns 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.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
-
Enum Constant Details
-
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.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- 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.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getDisplay
returns the display string- Returns:
- the display string
-
getComment
returns the comment string- Returns:
- the comment string
-
toString
returns the display string of the Type- Overrides:
toString
in classEnum<TechnicalInformation.Type>
- Returns:
- the display string
-