OpenSplice Java 5 DCPS  v6.x
OpenSplice Java 5 OpenSplice Data Distribution Service Data-Centric Publish-Subscribe API
TypeId.java
Go to the documentation of this file.
1 /* Copyright 2010, Object Management Group, Inc.
2  * Copyright 2010, PrismTech, Inc.
3  * Copyright 2010, Real-Time Innovations, Inc.
4  * All rights reserved.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18 
19 package org.omg.dds.type.typeobject;
20 
21 import org.omg.dds.type.TypeKind;
22 
23 
27 public final class TypeId {
28  // -----------------------------------------------------------------------
29  // Constants
30  // -----------------------------------------------------------------------
31 
32  public static final int NO_TYPE_ID =
34  public static final int BOOLEAN_TYPE_ID =
36  public static final int BYTE_TYPE_ID =
38  public static final int INT_16_TYPE_ID =
40  public static final int UINT_16_TYPE_ID =
42  public static final int INT_32_TYPE_ID =
44  public static final int UINT_32_TYPE_ID =
46  public static final int INT_64_TYPE_ID =
48  public static final int UINT_64_TYPE_ID =
50  public static final int FLOAT_32_TYPE_ID =
52  public static final int FLOAT_64_TYPE_ID =
54  public static final int FLOAT_128_TYPE_ID =
56  public static final int CHAR_8_TYPE_ID =
58  public static final int CHAR_32_TYPE_ID =
60 
61 
62 
63  // -----------------------------------------------------------------------
64  // Constructor
65  // -----------------------------------------------------------------------
66 
67  private TypeId() {
68  // empty
69  }
70 }
static final int FLOAT_32_TYPE_ID
Definition: TypeId.java:50
static final int BOOLEAN_TYPE_ID
Definition: TypeId.java:34
static final int INT_64_TYPE_VALUE
Definition: TypeKind.java:79
static final int UINT_32_TYPE_VALUE
Definition: TypeKind.java:78
static final int UINT_32_TYPE_ID
Definition: TypeId.java:44
static final int FLOAT_32_TYPE_VALUE
Definition: TypeKind.java:81
static final int FLOAT_128_TYPE_VALUE
Definition: TypeKind.java:83
static final int CHAR_8_TYPE_ID
Definition: TypeId.java:56
static final int INT_32_TYPE_ID
Definition: TypeId.java:42
static final int CHAR_8_TYPE_VALUE
Definition: TypeKind.java:84
static final int FLOAT_64_TYPE_ID
Definition: TypeId.java:52
static final int NO_TYPE_VALUE
sentinel indicating "null" value
Definition: TypeKind.java:66
static final int INT_16_TYPE_VALUE
Definition: TypeKind.java:75
Every type has an ID.
Definition: TypeId.java:27
static final int UINT_16_TYPE_VALUE
Definition: TypeKind.java:76
static final int BYTE_TYPE_VALUE
Definition: TypeKind.java:74
static final int INT_16_TYPE_ID
Definition: TypeId.java:38
static final int UINT_64_TYPE_VALUE
Definition: TypeKind.java:80
static final int BOOLEAN_TYPE_VALUE
Definition: TypeKind.java:73
static final int BYTE_TYPE_ID
Definition: TypeId.java:36
static final int CHAR_32_TYPE_VALUE
Definition: TypeKind.java:85
static final int FLOAT_128_TYPE_ID
Definition: TypeId.java:54
static final int CHAR_32_TYPE_ID
Definition: TypeId.java:58
static final int UINT_16_TYPE_ID
Definition: TypeId.java:40
static final int INT_64_TYPE_ID
Definition: TypeId.java:46
static final int UINT_64_TYPE_ID
Definition: TypeId.java:48
static final int INT_32_TYPE_VALUE
Definition: TypeKind.java:77
static final int FLOAT_64_TYPE_VALUE
Definition: TypeKind.java:82