Sync with 5.4.0
[deliverable/titan.core.git] / titan_executor_api / TITAN_Executor_API / src / org / eclipse / titan / executor / jni / HcStateEnum.java
1 /******************************************************************************
2 * Copyright (c) 2000-2015 Ericsson Telecom AB
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 ******************************************************************************/
8 package org.eclipse.titan.executor.jni;
9
10 /**
11 * Possible states of a HC.
12 * <p>
13 * The original C++ structure can be found at TTCNv3\mctr2\mctr\MainController.h
14 */
15 public enum HcStateEnum {
16
17 HC_IDLE(0),
18 HC_CONFIGURING(1),
19 HC_ACTIVE(2),
20 HC_OVERLOADED(3),
21 HC_CONFIGURING_OVERLOADED(4),
22
23 HC_EXITING(5),
24 HC_DOWN(6);
25
26 private int value;
27
28 private HcStateEnum(final int aValue) {
29 value = aValue;
30 }
31
32 public int getValue() {
33 return value;
34 }
35 }
This page took 0.052924 seconds and 5 git commands to generate.