blob: 12942cfd2e03d3f346784355b434b6ff6a5e29f8 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2016-2017 TypeFox and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
******************************************************************************/
package org.eclipse.lsp4j.jsonrpc.debug.test.json;
import com.google.gson.annotations.SerializedName;
/**
* DSP, unlike LSP enums are passed as strings, not numbers. That means a
* different style.
*/
public enum MyDebugEnum {
/**
* An enum that simply needs case conversion
*/
ENUM1,
/**
* An enum with _ case to camel case
*/
ANOTHER_ENUM,
/**
* An enum with no fixed rule
*/
@SerializedName("aStrangeEnumUTC")
A_STRANGE_ENUM_UTC;
}