Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I have an enum object, is it considered a primitive or a reference?

share|improve this question
Enums are absolutely normal classes w/ some optimizations (for serialization) + c-tor check for inheritance level + extra shared array (non cloned()) of declared enums. The public method values() always returns a new copy. They can implement interfaces and what not :) – bestsss Jan 25 '11 at 16:27

5 Answers

up vote 19 down vote accepted

It's a reference type.

Unlike many languages, in which an enum is a set of integral constansts, Java enums are immutable object instances. You can get the numeric value of an enum instance by calling ordinal().

You can even add your own members to the enum class, like this:

public enum Operation {
  PLUS   { double eval(double x, double y) { return x + y; } },
  MINUS  { double eval(double x, double y) { return x - y; } },
  TIMES  { double eval(double x, double y) { return x * y; } },
  DIVIDE { double eval(double x, double y) { return x / y; } };

  // Do arithmetic op represented by this constant
  abstract double eval(double x, double y);
}
//Elsewhere:
Operation op = Operation.PLUS;
double two = op.eval(1, 1);
share|improve this answer
+1 I was completely unaware of this functionality. Could you provide an example of how to use that operation in action? – corsiKa Jul 12 '10 at 19:49
4  
enum instances don't have to be immutable actually. An enum can have mutable variables. – sepp2k Jul 12 '10 at 19:50
@glowcoder: Operation.PLUS.eval(1, 1) – SLaks Jul 12 '10 at 19:51
3  
@sepp2k: Yes, they could. However, that would be evil. – SLaks Jul 12 '10 at 19:51
7  
@SLaks: Be that as it may, it is still inaccurate to say "Java enums are immutable object instances" just because you feel they should be. – sepp2k Jul 12 '10 at 20:03
show 3 more comments

The way enums work is actually not too different from how they were used before their introduction with Java 5:

public final class Suit {

public static final Suit CLUBS = new Suit();
public static final Suit DIAMONDS = new Suit();
public static final Suit HEARTS = new Suit();
public static final Suit SPADES = new Suit();

/**
 * Prevent external instantiation.
 */
private Suit() {
    // No implementation
}}

By instantiating the different suits on class loading it is ensured that these will be mutually exclusive and the private constructor ensures that no further instances will be created.

These would be comparable either through == or equals.

The Java 5 enum works pretty much the same way, but with some necessary features to support serialization etc.

I hope this background sheds some further light.

share|improve this answer

This article essentially shows you how enums are implemented, and as SLaks says, they are references.

share|improve this answer

Enums in Java are Objects and these also define their own methods ordinal() that returns int representation. So unlike many other languages these are reference type.

share|improve this answer

Enums are reference types, in that they can have methods and can be executed from command line as well , if they have main method.

See following "Planet" example from Sun/Oracle

http://download.oracle.com/javase/tutorial/java/javaOO/enum.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.