CursedChico
CursedChico

Reputation: 581

Enum can not be resolved? Java

I have 2 classed at different pages.

The object class:

public class Sensor {

  Type type;
  public static enum Type
  {
        PROX,SONAR,INF,CAMERA,TEMP;
  }

  public Sensor(Type type)
  {
  this.type=type;
  }

  public void TellIt()
  {
      switch(type)
      {
      case PROX: 
          System.out.println("The type of sensor is Proximity");
          break;
      case SONAR: 
          System.out.println("The type of sensor is Sonar");
          break;
      case INF: 
          System.out.println("The type of sensor is Infrared");
          break;
      case CAMERA: 
          System.out.println("The type of sensor is Camera");
          break;
      case TEMP: 
          System.out.println("The type of sensor is Temperature");
          break;
      }
  }

  public static void main(String[] args)
    {
        Sensor sun=new Sensor(Type.CAMERA);
        sun.TellIt();
    }
    }

Main class:

import Sensor.Type;

public class MainClass {

public static void main(String[] args)
{
    Sensor sun=new Sensor(Type.SONAR);
    sun.TellIt();
}

Errors are two, one is Type can not be resolved other is cant not import. What can i do? I first time used enums but you see.

Upvotes: 5

Views: 15237

Answers (3)

Reimeus
Reimeus

Reputation: 159784

enums are required to be declared in a package for import statements to work, i.e. importing enums from classes in package-private (default package) classes is not possible. Move the enum to a package

import static my.package.Sensor.Type;
...
Sensor sun = new Sensor(Type.SONAR);

Alternatively you can use the fully qualified enum

Sensor sun = new Sensor(Sensor.Type.SONAR);

without the import statement

Upvotes: 10

Veera
Veera

Reputation: 1805

For static way give proper package structure in the static import statement

import static org.test.util.Sensor.Type;
import org.test.util.Sensor;
public class MainClass {
    public static void main(String[] args) {
        Sensor sun = new Sensor(Type.SONAR);
        sun.TellIt();
    }
}

Upvotes: 2

ThePoltergeist
ThePoltergeist

Reputation: 182

The static keyword has no effect on enum. Either use the outer class reference or create the enum in its own file.

Upvotes: 2

Related Questions