Define DataStoreVersions.MAGNESIUM_VERSION
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / TransactionType.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.cluster.datastore;
9
10 public enum TransactionType {
11     READ_ONLY,
12     WRITE_ONLY,
13     READ_WRITE;
14
15     // Cache all values
16     private static final TransactionType[] VALUES = values();
17
18     public static TransactionType fromInt(final int type) {
19         try {
20             return VALUES[type];
21         } catch (IndexOutOfBoundsException e) {
22             throw new IllegalArgumentException("In TransactionType enum value " + type, e);
23         }
24     }
25 }