Enum RISType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<RISType>

    public enum RISType
    extends java.lang.Enum<RISType>
    Valid RIS reference types.
    Author:
    Michel Kraemer
    • Enum Constant Detail

      • ABST

        public static final RISType ABST
      • ADVS

        public static final RISType ADVS
      • AGGR

        public static final RISType AGGR
      • ANCIENT

        public static final RISType ANCIENT
      • ART

        public static final RISType ART
      • BILL

        public static final RISType BILL
      • BLOG

        public static final RISType BLOG
      • BOOK

        public static final RISType BOOK
      • CASE

        public static final RISType CASE
      • CHAP

        public static final RISType CHAP
      • CHART

        public static final RISType CHART
      • CLSWK

        public static final RISType CLSWK
      • COMP

        public static final RISType COMP
      • CONF

        public static final RISType CONF
      • CPAPER

        public static final RISType CPAPER
      • CTLG

        public static final RISType CTLG
      • DATA

        public static final RISType DATA
      • DBASE

        public static final RISType DBASE
      • DICT

        public static final RISType DICT
      • EBOOK

        public static final RISType EBOOK
      • ECHAP

        public static final RISType ECHAP
      • EDBOOK

        public static final RISType EDBOOK
      • EJOUR

        public static final RISType EJOUR
      • ELEC

        public static final RISType ELEC
      • ENCYC

        public static final RISType ENCYC
      • EQUA

        public static final RISType EQUA
      • FIGURE

        public static final RISType FIGURE
      • GEN

        public static final RISType GEN
      • GOVDOC

        public static final RISType GOVDOC
      • GRANT

        public static final RISType GRANT
      • HEAR

        public static final RISType HEAR
      • ICOMM

        public static final RISType ICOMM
      • INPR

        public static final RISType INPR
      • JFULL

        public static final RISType JFULL
      • JOUR

        public static final RISType JOUR
      • LEGAL

        public static final RISType LEGAL
      • MANSCPT

        public static final RISType MANSCPT
      • MAP

        public static final RISType MAP
      • MGZN

        public static final RISType MGZN
      • MPCT

        public static final RISType MPCT
      • MULTI

        public static final RISType MULTI
      • MUSIC

        public static final RISType MUSIC
      • NEWS

        public static final RISType NEWS
      • PAMP

        public static final RISType PAMP
      • PAT

        public static final RISType PAT
      • PCOMM

        public static final RISType PCOMM
      • RPRT

        public static final RISType RPRT
      • SER

        public static final RISType SER
      • SLIDE

        public static final RISType SLIDE
      • SOUND

        public static final RISType SOUND
      • STAND

        public static final RISType STAND
      • STAT

        public static final RISType STAT
      • STD

        public static final RISType STD
      • THES

        public static final RISType THES
      • UNPB

        public static final RISType UNPB
      • VIDEO

        public static final RISType VIDEO
    • Method Detail

      • values

        public static RISType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (RISType c : RISType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static RISType valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<RISType>
      • fromString

        public static RISType fromString​(java.lang.String str)
        Converts the given string to a RISType
        Parameters:
        str - the string
        Returns:
        the converted RISType