Example usage for org.apache.zookeeper ZooDefs opNames

List of usage examples for org.apache.zookeeper ZooDefs opNames

Introduction

In this page you can find the example usage for org.apache.zookeeper ZooDefs opNames.

Prototype

String[] opNames

To view the source code for org.apache.zookeeper ZooDefs opNames.

Click Source Link

Usage

From source file:org.midonet.midolman.state.ZkOpList.java

License:Apache License

private static String getOpDesc(Op op) {
    return ZooDefs.opNames[op.getType()] + " " + op.getPath();
}