Code ReOrganization and Re-Architecture changes
[ovsdb.git] / ovsdb / src / main / java / org / opendaylight / ovsdb / lib / notation / Mutator.java
diff --git a/ovsdb/src/main/java/org/opendaylight/ovsdb/lib/notation/Mutator.java b/ovsdb/src/main/java/org/opendaylight/ovsdb/lib/notation/Mutator.java
deleted file mode 100644 (file)
index 2c7728a..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * Copyright (C) 2013 Red Hat, Inc.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- *
- * Authors : Madhu Venugopal, Ashwin Raveendran
- */
-package org.opendaylight.ovsdb.lib.notation;
-
-public enum Mutator {
-    SUM("+="),
-    DIFFERENCE("-="),
-    PRODUCT("*="),
-    QUOTIENT("/="),
-    REMAINDER("%="),
-    INSERT("insert"),
-    DELETE("delete");
-
-    private Mutator(String name) {
-        this.name = name;
-    }
-
-    private String name;
-
-    public String toString() {
-        return name;
-    }
-}