• No results found

17. ENUM

N/A
N/A
Protected

Academic year: 2021

Share "17. ENUM"

Copied!
14
0
0

Loading.... (view fulltext now)

Full text

(1)
(2)

ENUM

ENUM

 Ag

 Age

end

nda

a

1.

1. IntroductionIntroduction 2.

2. Internal implementation of enumInternal implementation of enum 3.

3. Declaration and usage of enumDeclaration and usage of enum 4.

4. Enum vs switch statementEnum vs switch statement 5.

5. enum outside the class allowed modifiersenum outside the class allowed modifiers 6.

6. enum inside a class allowed modifiersenum inside a class allowed modifiers 7.

7. Enum vs inheritanceEnum vs inheritance 8.

8. Java.lang.Enum classJava.lang.Enum class

o

o values() methodvalues() method o

o ordinal() methodordinal() method

9.

9. Speciality of java enumSpeciality of java enum 10.

10. Enum vs constructorEnum vs constructor 11.

11. enum Vs Enum Vs Enumerationenum Vs Enum Vs Enumeration

Introduction :

Introduction :

We can use enum

We can use enum to define a group of named constants.to define a group of named constants. Example 1: Example 1: enum Month enum Month { { JAN,FEB,MAR,

JAN,FEB,MAR, ... ... DEC; DEC; //; //; -->optional-->optional } } Example 2: Example 2: enum Beer enum Beer { { KF,KO,RC,FO; KF,KO,RC,FO; } } 

 Enum concept introduced in 1.5 Enum concept introduced in 1.5 versions.versions. 

 When compared with old languages When compared with old languages enum java's enum is enum java's enum is more powerful.more powerful. 

 By using enum we can define our own data types which are also By using enum we can define our own data types which are also come enumeratcome enumerateded

data types. data types.

Internal implementation of enum: Internal implementation of enum:

Internally enum's are implemented by using class concept. Internally enum's are implemented by using class concept. Every enum constant is a

Every enum constant is a reference variable to that enum type object.reference variable to that enum type object. Every enum constant is impli

(3)

Example 3: Example 3:

Diagram: Diagram:

Declaration and usage of enum: Declaration and usage of enum: Example 4: Example 4: enum Beer enum Beer { {

KF,KO,RC,FO;//here semicolon is optional. KF,KO,RC,FO;//here semicolon is optional. } } class Test class Test { {

 public static void main(String args[]){  public static void main(String args[]){

Beer b1=Beer.KF; Beer b1=Beer.KF; System.out.println(b1); System.out.println(b1); } } } } Output: Output: D:\Enum>java Test D:\Enum>java Test KF KF Note: Note: 

 Every enum constant internally static hence we can access by using "enum name".Every enum constant internally static hence we can access by using "enum name". 

 Internally inside every enum toString() method is implemented to return name ofInternally inside every enum toString() method is implemented to return name of

the constant. the constant.

(4)

Enum vs switch statement: Enum vs switch statement:

Until 1.4 versions the allowed argument types for the

Until 1.4 versions the allowed argument types for the switch statement are byte, short,switch statement are byte, short, char int.

char int.

But from 1.5 version onwards in addition to th

But from 1.5 version onwards in addition to this the corresponding wrapper classes andis the corresponding wrapper classes and enum type also allowed.

enum type also allowed.

That is from 1.5 version onwards we can u

That is from 1.5 version onwards we can use enum type as argument to switchse enum type as argument to switch statement. statement. Diagram: Diagram: Example: Example: enum Beer enum Beer { { KF,KO,RC,FO; KF,KO,RC,FO; } } class Test{ class Test{

 public static void main(String args[]){  public static void main(String args[]){

Beer b1=Beer.RC; Beer b1=Beer.RC; switch(b1){ switch(b1){ case KF: case KF:

System.out.println("it is childrens brand"); System.out.println("it is childrens brand");

(5)

 break;  break; case KO:

case KO:

System.out.println("it is too lite"); System.out.println("it is too lite");  break;

 break; case RC:

case RC:

System.out.println("it is too hot"); System.out.println("it is too hot");  break;

 break; case FO:

case FO:

System.out.println("buy one get one"); System.out.println("buy one get one");  break;

 break; default:

default:

System.out.println("other brands are not good"); System.out.println("other brands are not good"); } } }} }} Output: Output: D:\Enum>java Test D:\Enum>java Test It is too hot It is too hot If we are passing enum

If we are passing enum type as argument to switch statement then every case labeltype as argument to switch statement then every case label should be a valid en

should be a valid enum constant otherwise we will get compile time error.um constant otherwise we will get compile time error. Example: Example: enum Beer enum Beer { { KF,KO,RC,FO; KF,KO,RC,FO; } } class Test{ class Test{

 public static void main(String args[]){  public static void main(String args[]){

Beer b1=Beer.RC; Beer b1=Beer.RC; switch(b1){ switch(b1){ case KF: case KF: case RC: case RC: case KALYANI: case KALYANI: }}} }}} Output: Output:

Compile time error. Compile time error. D:\Enum>javac Test.java D:\Enum>javac Test.java

Test.java:11: unqualified enumeration constant name required Test.java:11: unqualified enumeration constant name required case KALYANI:

case KALYANI:

We can declare enum either outside the class or within the class but not inside a method. We can declare enum either outside the class or within the class but not inside a method. If we declare enum outside the class the allowed modifiers are :

If we declare enum outside the class the allowed modifiers are :  public  public default default strictfp. strictfp.

(6)

If we declare enum insid

If we declare enum insid e a class then the allowed modifiers are :e a class then the allowed modifiers are :

 public

 public privateprivate default

default + + protectedprotected strictfp static strictfp static Example: Example: Enum vs inheritance: Enum vs inheritance: 

 Every enum in java is the direct child clEvery enum in java is the direct child class of java.lang.Enum class hence it is notass of java.lang.Enum class hence it is not

possible to extends any other enum. possible to extends any other enum.

 Every enum is implicitly final hence we can't create Every enum is implicitly final hence we can't create child enum.child enum. 

 Because of above reasons we can conclude inheritance concept is not applicableBecause of above reasons we can conclude inheritance concept is not applicable

for enum's explicitly. Hence we can't apply extends keyword for enum's . for enum's explicitly. Hence we can't apply extends keyword for enum's .

(7)

Example: Example: Example: Example: Java.lang.Enum class: Java.lang.Enum class: 

 Every enum in java is the direct child clEvery enum in java is the direct child class of java.lang.Enum class. Hence this classass of java.lang.Enum class. Hence this class

acts as base class for all java enums. acts as base class for all java enums.

 It is abstract class and it iIt is abstract class and it is direct child class of "Object class"s direct child class of "Object class" 

(8)

values() method: values() method:

Every enum implicitly contains a static

Every enum implicitly contains a static values() method to list all constants of enum.values() method to list all constants of enum. Example: Beer[] b=Beer.values();

Example: Beer[] b=Beer.values();

ordinal() method: ordinal() method:

Within enum the order of constants is important we can specify by its

Within enum the order of constants is important we can specify by its ordinal value. Weordinal value. We can find ordinal value(index value) of enum constant by using

can find ordinal value(index value) of enum constant by using ordinal() method.ordinal() method. Example: public final int ordinal();

Example: public final int ordinal(); Example: Example: enum Beer enum Beer { { KF,KO,RC,FO; KF,KO,RC,FO; } } class Test{ class Test{

 public static void main(String args[]){  public static void main(String args[]){

Beer[] b=Beer.values(); Beer[] b=Beer.values();

for(Beer b1:b)//this is forEach loop. for(Beer b1:b)//this is forEach loop. { { System.out.println(b1+"..."+b1.ordinal()); System.out.println(b1+"..."+b1.ordinal()); }}} }}} Output: Output: D:\Enum>java Test D:\Enum>java Test KF...0 KF...0 KO...1 KO...1 RC...2 RC...2 FO...3 FO...3

Speciality of java enum: Speciality of java enum: When compared with old

When compared with old languages enum, java's enum is more powerful because inlanguages enum, java's enum is more powerful because in addition to constants we can take normal variables, constructors, methods etc which addition to constants we can take normal variables, constructors, methods etc which may not possible in old la

may not possible in old languages.nguages. Inside enum we can

Inside enum we can declare main method and even we can declare main method and even we can invoke enum directly frominvoke enum directly from the command prompt.

the command prompt. Example: Example: enum Fish{ enum Fish{ GOLD,APOLO,STAR; GOLD,APOLO,STAR;

 public static void main(String args[]){  public static void main(String args[]){

System.out.println("enum main() method called"); System.out.println("enum main() method called"); }}

}}

Output: Output:

(9)

D:\Enum>java Fish D:\Enum>java Fish

enum main() method called enum main() method called In addition to constants if we a

In addition to constants if we are taking any extra members like methods then the list ofre taking any extra members like methods then the list of constants should be in the 1st line and should ends with semicolon.

constants should be in the 1st line and should ends with semicolon. If we are taking any extra member then enu

If we are taking any extra member then enum should contain at least one constant. Anym should contain at least one constant. Any way an empty enum is always valid.

way an empty enum is always valid. Example:

Example:

Enum vs constructor:

Enum vs constructor:

Enum can contain constructor. Every enum constant

Enum can contain constructor. Every enum constant represents an object of that enumrepresents an object of that enum class which is static h

class which is static h ence all enum constants will be created at the time of class loadence all enum constants will be created at the time of class load inging automatically and hence constructor will be executed at the ti

automatically and hence constructor will be executed at the ti me of enum class loadingme of enum class loading for every enum constants.

for every enum constants. Example: Example: enum Beer{ enum Beer{ KF,KO,RC,FO; KF,KO,RC,FO;

(10)

Beer(){ Beer(){ System.out.println("Constructor called."); System.out.println("Constructor called."); } } } } class Test{ class Test{

 public static void main(String args[]){  public static void main(String args[]){

Beer

Beer b=Beer.KF; b=Beer.KF; // // --->1--->1 System.out.println("hello."); System.out.println("hello."); }} }} Output: Output: D:\Enum>java Test D:\Enum>java Test Constructor called. Constructor called. Constructor called. Constructor called. Constructor called. Constructor called. Constructor called. Constructor called. Hello. Hello.

If we comment line 1 then the output is Hello. If we comment line 1 then the output is Hello.

We can't create enum object explicitly and hence we can't i

We can't create enum object explicitly and hence we can't invoke constructor directly.nvoke constructor directly. Example: Example: enum Beer{ enum Beer{ KF,KO,RC,FO; KF,KO,RC,FO; Beer(){ Beer(){ System.out.println("constructor called"); System.out.println("constructor called"); } } } } class Test{ class Test{

 public static void main(String args[]){  public static void main(String args[]){

Beer b=new Beer(); Beer b=new Beer(); System.out.println(b); System.out.println(b); }} }} Output: Output:

Compile time error. Compile time error. D:\Enum>javac Test.java D:\Enum>javac Test.java

Test.java:9: enum types may not be instantiated Test.java:9: enum types may not be instantiated Beer b=new Beer();

Beer b=new Beer(); Example:

(11)

enum Beer enum Beer { { KF(100),KO(70),RC(65),Fo(90),KALYANI; KF(100),KO(70),RC(65),Fo(90),KALYANI; int price; int price; Beer(int price){ Beer(int price){ this.price=price; this.price=price; } } Beer() Beer() { { this.price=125; this.price=125; } }

 public int getPrice()  public int getPrice()

{ { return price; return price; } } } } class Test{ class Test{

 public static void main(String args[]){  public static void main(String args[]){

Beer[] b=Beer.values(); Beer[] b=Beer.values(); for(Beer b1:b) for(Beer b1:b) { { System.out.println(b1+"..."+b1.getPrice()); System.out.println(b1+"..."+b1.getPrice()); }}} }}} output : output : KF...100 KF...100 KO...70 KO...70 RC...65 RC...65 FO ...90 FO ...90 KALYANI...125 KALYANI...125

Inside enum we can

Inside enum we can take both instance and static methods but it is not potake both instance and static methods but it is not possible to takessible to take abstract methods.

abstract methods. Case 1:

Case 1:

Every enum constant represents an obj

Every enum constant represents an object hence whatever the methods we can apply onect hence whatever the methods we can apply on the normal objects we can apply the same methods o

the normal objects we can apply the same methods o n enum constants also.n enum constants also. Which of the following expressions are valid

Which of the following expressions are valid ??

Beer.KF==Beer.RC---> false Beer.KF==Beer.RC---> false Beer.KF.equals(Beer.RC)

Beer.KF.equals(Beer.RC) ---> ---> falsefalse

Beer.KF < Beer.RC---> invalid Beer.KF < Beer.RC---> invalid Beer.KF.ordinal()

Beer.KF.ordinal() < < Beer.RC.ordinal()---> Beer.RC.ordinal()---> validvalid Case 2: Case 2: Example 1: Example 1:  package pack1;  package pack1;

(12)

 public enum Fish  public enum Fish

{ { STAR,GUPPY; STAR,GUPPY; } } Example 2: Example 2:  package pack2;  package pack2;

//import static pack1.Fish.*; //import static pack1.Fish.*; import static pack1.Fish.STAR; import static pack1.Fish.STAR; class A

class A {

{

 public static void main(String args[]){  public static void main(String args[]){

System.out.println(STAR); System.out.println(STAR); } } } } Import pack1.*;

Import pack1.*; --->invalid--->invalid Import pack1.Fish;

Import pack1.Fish; --->invalid--->invalid import static pack1.Fish.*; --->valid import static pack1.Fish.*; --->valid import static pack1.Fish.STAR; --->valid import static pack1.Fish.STAR; --->valid Example 3: Example 3:  package pack3;  package pack3; //import pack1.Fish; //import pack1.Fish; import pack1.*; import pack1.*;

//import static pack1.Fish.GUPPY; //import static pack1.Fish.GUPPY; import static pack1.Fish.*;

import static pack1.Fish.*; class B

class B {

{

 public static void main(String args[]){  public static void main(String args[]){

Fish f=Fish.STAR; Fish f=Fish.STAR; System.out.println(GUPPY); System.out.println(GUPPY); } } } } Note : Note : If we want to use cl

If we want to use classname directly from outside package we should write normal importassname directly from outside package we should write normal import , If we want to acce

, If we want to acce ss static method or static variable without classname directly thenss static method or static variable without classname directly then static import is required.

static import is required. Case 3: Case 3: Example 1: Example 1: enum Color enum Color { { BLUE,RED,GREEN; BLUE,RED,GREEN;  public void info()  public void info()

{ { System.out.println("Universal color"); System.out.println("Universal color"); } } } }

(13)

class Test class Test {

{

 public static void main(String args[]){  public static void main(String args[]){

Color[] c=Color.values(); Color[] c=Color.values(); for(Color c1:c) for(Color c1:c) { { c1.info(); c1.info(); }}} }}} Output: Output: Universal color Universal color Universal color Universal color Universal color Universal color Example 2: Example 2: enum Color enum Color { { BLUE,RED BLUE,RED { {

 public void info(){  public void info(){

System.out.println("Dangerous color"); System.out.println("Dangerous color"); } } },GREEN; },GREEN;

 public void info()  public void info()

{ { System.out.println("Universal color"); System.out.println("Universal color"); } } } } class Test class Test { {

 public static void main(String args[]){  public static void main(String args[]){

Color[] c=Color.values(); Color[] c=Color.values(); for(Color c1:c) for(Color c1:c) { { c1.info(); c1.info(); }}} }}} Output: Output: Universal color Universal color Dangerous color Dangerous color Universal color Universal color

(14)

enum Vs Enum Vs Enumeration :

enum Vs Enum Vs Enumeration :

enum : enum i

enum : enum is a keyword which can be used to ds a keyword which can be used to define a group of named constants.efine a group of named constants. Enum :

Enum : It is a class p

It is a class present in java.lang package .resent in java.lang package . Every enum in java is th

Every enum in java is the direct child class of this class. Hence this Ene direct child class of this class. Hence this En um class acts asum class acts as base class for all java enum's .

base class for all java enum's . Enumeration :

Enumeration :

It is a interface present in ja

It is a interface present in java.util package .va.util package . We can use Enumerat

References

Related documents

Table 1 Key practices in Ecological Intensification, the ecosystem services they are expected to support (adapted from Kremen &amp; Miles 2012) and how they relate to the main land

A is a cause of E based on such test results would induce a violation of the principle of determinism, which, as indicated above, we do not want for processes of the type

In this process, the customer enters engine and customer data into our template and then uploads it to the Product Registration website..

public enum Triangle { Scalene, Isosceles, Equilateral, Invalid } /** side1, side2, and side3 are lengths of the sides of a triangle. * Returns the appropriate

Glycerin thickens hair to glycerin can directly on face, when using it on your skin care not cause an engineering degree that you apply glycerin draws the surface of moisture

Economic instruments related to CO 2 in passenger transport exist in various forms including charges for the use of infrastructure (e.g. vignettes or tolls), vehicle

 Seller corporation was in delay, amounting to non-performance of obligation to buyer Millan who had fully paid up her instalments..  NCC170 provides that those who in

• If the user changes Internet providers he can keep the same number and only inform an ENUM registrar of his new email address and web URL. ƒ Companies with “unfortunate”