SCViewer/plugins/com.minres.scviewer.database/src/com/minres/scviewer/database/DataType.java

44 lines
1.6 KiB
Java
Raw Normal View History

/*******************************************************************************
2021-01-09 14:26:49 +01:00
* Copyright (c) 2015-2021 MINRES Technologies GmbH and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* MINRES Technologies GmbH - initial API and implementation
*******************************************************************************/
package com.minres.scviewer.database;
2015-01-06 17:14:16 +01:00
/**
* The Enum DataType.
*/
2015-01-06 17:14:16 +01:00
public enum DataType {
/** The boolean. */
2023-02-24 07:59:17 +01:00
BOOLEAN, // bool
/** The enumeration. */
2023-02-24 07:59:17 +01:00
ENUMERATION, // enum
/** The integer. */
2023-02-24 07:59:17 +01:00
INTEGER, // char, short, int, long, long long, sc_int, sc_bigint
/** The unsigned. */
2023-02-24 07:59:17 +01:00
UNSIGNED, // unsigned { char, short, int, long, long long }, sc_uint, sc_biguint
/** The floating point number. */
2023-02-24 07:59:17 +01:00
FLOATING_POINT_NUMBER, // float, double
/** The bit vector. */
2023-02-24 07:59:17 +01:00
BIT_VECTOR, // sc_bit, sc_bv
/** The logic vector. */
2023-02-24 07:59:17 +01:00
LOGIC_VECTOR, // sc_logic, sc_lv
/** The fixed point integer. */
2023-02-24 07:59:17 +01:00
FIXED_POINT_INTEGER, // sc_fixed
/** The unsigned fixed point integer. */
2023-02-24 07:59:17 +01:00
UNSIGNED_FIXED_POINT_INTEGER, // sc_ufixed
/** The pointer. */
2023-02-24 07:59:17 +01:00
POINTER, // T*
/** The string. */
2023-02-24 07:59:17 +01:00
STRING, // string, std::string
2023-02-21 09:10:35 +01:00
/** The time. */
2023-02-24 07:59:17 +01:00
TIME, // sc_time
/** The void type. */
NONE
}