Ciao a tutti....ho un problema con delle classi che usano la libreria neo4j. Ho creato una classe:

codice:
public class Prova{
	
	private static enum DrugRelTypes implements RelationshipType
	 {
	     CONTAINED_IN, KNOWS
	 }


	public static void main(String [] args)
	{	
		Bio4jManager manager=null;
		BufferedReader buff=null;
		PrintWriter out=null;
		PrintWriter infodrug=null;
		GraphDatabaseService graphDb = null;
                .
                .
                .
                .
                .
                .
Sempre all' interno di questa classe inserisco nel main:

codice:
ProteinNode a=proteins.get(a1);      //NODO BIO4j
													Node n = graphDb.createNode();       //NODE PER COSTRUTTORE DRUG
													DrugNode b=new DrugNode(n, (String)drugIDList.get(i), (String)drugname.get(i));  //NODO DRUG
													
Relationship rel = a.getNode().createRelationshipTo(b, DrugRelTypes.KNOWS);
All' ultima riga non accetta il secondo parametro....ottengo:

codice:
Multiple markers at this line
	- DrugRelType.DrugRelTypes cannot be resolved to a variable
Per quale motivo?