Package enums

Enum Schools

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

    public enum Schools
    extends java.lang.Enum<Schools>
    This enum represent various schools in NTU Each school is identified by its acronym
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      ADM
      School of Art, Design and Media
      ASE
      Asian School of the Environment
      CCEB
      School of Chemistry, Chemical Engineering and Biotechnology
      CEE
      School of Civil and Environmental Engineering
      EEE
      School of Electrical and Electronic Engineering
      LKCMedicine
      Lee Kong Chian School of Medicine
      MAE
      School of Mechanical and Aerospace Engineering
      MSE
      School of Materials Science and Engineering
      NBS
      Nanyang Business School
      NIE
      National Institute of Education
      SBS
      School of Biological Sciences
      SCSE
      School of Computer Science and Engineering
      SOH
      School of Humanities
      SPMS
      School of Physical and Mathematical Sciences
      SSS
      School of Social Sciences
      WKWSCI
      Wee Kim Wee School of Communication and Information
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private Schools()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static Schools valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static Schools[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • SCSE

        public static final Schools SCSE
        School of Computer Science and Engineering
      • CCEB

        public static final Schools CCEB
        School of Chemistry, Chemical Engineering and Biotechnology
      • EEE

        public static final Schools EEE
        School of Electrical and Electronic Engineering
      • CEE

        public static final Schools CEE
        School of Civil and Environmental Engineering
      • MSE

        public static final Schools MSE
        School of Materials Science and Engineering
      • MAE

        public static final Schools MAE
        School of Mechanical and Aerospace Engineering
      • NBS

        public static final Schools NBS
        Nanyang Business School
      • ADM

        public static final Schools ADM
        School of Art, Design and Media
      • SOH

        public static final Schools SOH
        School of Humanities
      • SSS

        public static final Schools SSS
        School of Social Sciences
      • WKWSCI

        public static final Schools WKWSCI
        Wee Kim Wee School of Communication and Information
      • SPMS

        public static final Schools SPMS
        School of Physical and Mathematical Sciences
      • SBS

        public static final Schools SBS
        School of Biological Sciences
      • ASE

        public static final Schools ASE
        Asian School of the Environment
      • LKCMedicine

        public static final Schools LKCMedicine
        Lee Kong Chian School of Medicine
      • NIE

        public static final Schools NIE
        National Institute of Education
    • Constructor Detail

      • Schools

        private Schools()
    • Method Detail

      • values

        public static Schools[] 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 (Schools c : Schools.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Schools 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