JAVA EXAMPLE PROGRAMS

JAVA EXAMPLE PROGRAMS

Publish Your Article Here

Program: How to create custom constructor enum?


Description:

This example gives you how to create custom constructor for enum. The constructor should be either private or default scope, should not be protected or public. All elements defined in the enum must call constructor.


Code:
package com.java2novice.enums;

public class MyEnumCustomConstructor {

	enum Department{
		
		ACCOUNT(12),HR(24),FINANCE(100),SECURITY(108);
		
		private int deptId;
		
		Department(int id){
			deptId = id;
		}
		
		public int getDeptId(){
			return deptId;
		}
	}
	
	public static void main(String a[]){
		System.out.println("Accounts dept id:"+Department.ACCOUNT.getDeptId());
		System.out.println("HR dept id:"+Department.HR.getDeptId());
		System.out.println("Security dept id:"+Department.SECURITY.getDeptId());
	}
}

Output:
Accounts dept id:12
HR dept id:24
Security dept id:108
<< Previous Program 

List Of All Enum Programs:

  1. Basic Enum example.
  2. How to call enum, which is defined inside a class?
  3. How to override toString() method with enum?
  4. How to create custom constructor enum?
Knowledge Centre
Exception Vs Error
An error is an irrecoverable condition occurring at runtime like out of memory error. These kind of jvm errors cannot be handled at runtime. Exceptions are because of condition failures, which can be handled easily at runtime.
Famous Quotations
Be yourself; everyone else is already taken.
-- Oscar Wilde

About Author

I'm Nataraja Gootooru, programmer by profession and passionate about technologies. All examples given here are as simple as possible to help beginners. The source code is compiled and tested in my dev environment.

If you come across any mistakes or bugs, please email me to [email protected].

Most Visited Pages

Other Interesting Sites

Reference: Java™ Platform Standard Ed. 7 - API Specification | Java™ Platform Standard Ed. 8 - API Specification | Java is registered trademark of Oracle.
Privacy Policy | Copyright © 2022 by Nataraja Gootooru. All Rights Reserved.