Improve segmented journal actor metrics
[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     public static TransactionType fromInt(final int type) {
16         return switch (type) {
17             case 0 -> READ_ONLY;
18             case 1 -> WRITE_ONLY;
19             case 2 -> READ_WRITE;
20             default -> throw new IllegalArgumentException("In TransactionType enum value " + type);
21         };
22     }
23 }