312717ad90a9be1cb50aa6b72c7ebd3a6c2cbe0f
[controller.git] / opendaylight / config / config-manager-facade-xml / src / main / java / org / opendaylight / controller / config / facade / xml / TestOption.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
9 package org.opendaylight.controller.config.facade.xml;
10
11 import java.util.Arrays;
12
13 public enum TestOption {
14     testOnly, set, testThenSet;
15
16     public static TestOption getFromXmlName(final String testOptionXmlName) {
17         switch (testOptionXmlName) {
18         case "test-only":
19             return testOnly;
20         case "test-then-set":
21             return testThenSet;
22         case "set":
23             return set;
24         default:
25             throw new IllegalArgumentException("Unsupported test option " + testOptionXmlName + " supported: "
26                     + Arrays.toString(TestOption.values()));
27         }
28     }
29
30     public static TestOption getDefault() {
31         return testThenSet;
32     }
33
34 }