程序包 weka.core
Enum Class TechnicalInformation.Field
- 所有已实现的接口:
Serializable
,Comparable<TechnicalInformation.Field>
,Constable
- 封闭类:
- TechnicalInformation
the possible fields
-
嵌套类概要
从类继承的嵌套类/接口 java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
枚举常量概要
枚举常量枚举常量说明An abstract of the work.Usually the address of the publisher or other type of institution.The authors affiliation.An annotation.The name(s) of the author(s), in the format described in the LaTeX book.Title of a book, part of which is being cited.A chapter (or section or whatever) number.A Table of Contents.Copyright information.The database key of the entry being cross referenced.The edition of a book---for example, ``Second''.Name(s) of editor(s), typed as indicated in the LaTeX book.How something strange has been published.A link to a postscript file.The sponsoring institution of a technical report.The International Standard Book Number (10 digits).The International Standard Book Number (13 digits).The International Standard Serial Number.A journal name.Used for alphabetizing, cross referencing, and creating a label when the ``author'' information is missing.Key words used for searching or possibly for annotation.The language the document is in.The Library of Congress Call Number.A location associated with the entry, such as the city in which a conference took place.The month in which the work was published or, for an unpublished work, in which it was written.The Mathematical Reviews number.Any additional information that can help the reader.The number of a journal, magazine, technical report, or of a work in a series.The organization that sponsors a conference or that publishes a manual.One or more page numbers or range of numbers, such as 42--111 or 7,41,73--97 or 43+ (the `+' in this last example indicates pages following that don't form a simple range).A link to a postscript file.The price of the document.A link to a postscript file.The publisher's name.The name of the school where a thesis was written.The name of a series or set of books.The physical dimensions of a work.The work's title, typed as explained in the LaTeX book.The type of a technical report---for example, ``Research Note''.The WWW Universal Resource Locator that points to the item being referenced.The volume of a journal or multi-volume book.The year of publication or, for an unpublished work, the year it was written. -
方法概要
修饰符和类型方法说明returns the comment stringreturns the display stringtoString()
returns the display string of the Typestatic TechnicalInformation.Field
Returns the enum constant of this class with the specified name.static TechnicalInformation.Field[]
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
-
枚举常量详细资料
-
ADDRESS
Usually the address of the publisher or other type of institution. For major publishing houses, van Leunen recommends omitting the information entirely. For small publishers, on the other hand, you can help the reader by giving the complete address. -
ANNOTE
An annotation. It is not used by the standard bibliography styles, but may be used by others that produce an annotated bibliography. -
AUTHOR
The name(s) of the author(s), in the format described in the LaTeX book. -
BOOKTITLE
Title of a book, part of which is being cited. See the LaTeX book for how to type titles. For book entries, use the title field instead. -
CHAPTER
A chapter (or section or whatever) number. -
CROSSREF
The database key of the entry being cross referenced. Any fields that are missing from the current record are inherited from the field being cross referenced. -
EDITION
The edition of a book---for example, ``Second''. This should be an ordinal, and should have the first letter capitalized, as shown here; the standard styles convert to lower case when necessary. -
EDITOR
Name(s) of editor(s), typed as indicated in the LaTeX book. If there is also an author field, then the editor field gives the editor of the book or collection in which the reference appears. -
HOWPUBLISHED
How something strange has been published. The first word should be capitalized. -
INSTITUTION
The sponsoring institution of a technical report. -
JOURNAL
A journal name. Abbreviations are provided for many journals. -
KEY
Used for alphabetizing, cross referencing, and creating a label when the ``author'' information is missing. This field should not be confused with the key that appears in the cite command and at the beginning of the database entry. -
MONTH
The month in which the work was published or, for an unpublished work, in which it was written. You should use the standard three-letter abbreviation, as described in Appendix B.1.3 of the LaTeX book. -
NOTE
Any additional information that can help the reader. The first word should be capitalized. -
NUMBER
The number of a journal, magazine, technical report, or of a work in a series. An issue of a journal or magazine is usually identified by its volume and number; the organization that issues a technical report usually gives it a number; and sometimes books are given numbers in a named series. -
ORGANIZATION
The organization that sponsors a conference or that publishes a manual. -
PAGES
One or more page numbers or range of numbers, such as 42--111 or 7,41,73--97 or 43+ (the `+' in this last example indicates pages following that don't form a simple range). To make it easier to maintain Scribe-compatible databases, the standard styles convert a single dash (as in 7-33) to the double dash used in TeX to denote number ranges (as in 7--33). -
PUBLISHER
The publisher's name. -
SCHOOL
The name of the school where a thesis was written. -
SERIES
The name of a series or set of books. When citing an entire book, the the title field gives its title and an optional series field gives the name of a series or multi-volume set in which the book is published. -
TITLE
The work's title, typed as explained in the LaTeX book. -
TYPE
The type of a technical report---for example, ``Research Note''. -
VOLUME
The volume of a journal or multi-volume book. -
YEAR
The year of publication or, for an unpublished work, the year it was written. Generally it should consist of four numerals, such as 1984, although the standard styles can handle any year whose last four nonpunctuation characters are numerals, such as `\\hbox{(about 1984)}'. -
AFFILIATION
The authors affiliation. -
ABSTRACT
An abstract of the work. -
CONTENTS
A Table of Contents. -
COPYRIGHT
Copyright information. -
ISBN
The International Standard Book Number (10 digits). -
ISBN13
The International Standard Book Number (13 digits). -
ISSN
The International Standard Serial Number. Used to identify a journal. -
KEYWORDS
Key words used for searching or possibly for annotation. -
LANGUAGE
The language the document is in. -
LOCATION
A location associated with the entry, such as the city in which a conference took place. -
LCCN
The Library of Congress Call Number. I've also seen this as lib-congress. -
MRNUMBER
The Mathematical Reviews number. -
PRICE
The price of the document. -
SIZE
The physical dimensions of a work. -
URL
The WWW Universal Resource Locator that points to the item being referenced. This often is used for technical reports to point to the ftp site where the postscript source of the report is located. -
PS
A link to a postscript file. -
PDF
A link to a postscript file. -
HTTP
A link to a postscript file.
-
-
方法详细资料
-
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.Field>
- 返回:
- the display string
-