1 /* 2 * 3 * Copyright 2001-2011 Texas Instruments, Inc. - http://www.ti.com/ 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); 6 * you may not use this file except in compliance with the License. 7 * You may obtain a copy of the License at 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 * See the License for the specific language governing permissions and 15 * limitations under the License. 16 */ 17 18 package com.ti.jfm.core; 19 20 public enum JFmTxStatus implements IJFmEnum<Integer> { 21 22 SUCCESS(0), FAILED(1), PENDING(2), INVALID_PARM(3), IN_PROGRESS(4), NOT_APPLICABLE(5), NOT_SUPPORTED( 23 6), INTERNAL_ERROR(7), TRANSPORT_INIT_ERR(8), HARDWARE_ERR(9), NO_VALUE_AVAILABLE(10), CONTEXT_DOESNT_EXIST( 24 11), CONTEXT_NOT_DESTROYED(12), CONTEXT_NOT_ENABLED(13), CONTEXT_NOT_DISABLED(14), NOT_DE_INITIALIZED( 25 15), NOT_INITIALIZED(16), TOO_MANY_PENDING_CMDS(17), DISABLING_IN_PROGRESS(18), NO_RESOURCES( 26 19), FM_COMMAND_FAILED(20), SCRIPT_EXEC_FAILED(21), PROCESS_TIMEOUT_FAILURE(22), 27 28 FAILED_BT_NOT_INITIALIZED(23), AUDIO_OPERATION_UNAVAILIBLE_RESOURCES(24), 29 /* LAST (AUDIO_OPERATION_UNAVAILIBLE_RESOURCES), */ 30 31 FMC_FIRST_FM_RX_STATUS_CODE(100), FMC_FIRST_FM_TX_STATUS_CODE(200); 32 33 private final int value; 34 35 private JFmTxStatus(int value) { 36 this.value = value; 37 } 38 39 public Integer getValue() { 40 return value; 41 } 42 } 43