GridGain C++
binary_consts.h
Go to the documentation of this file.
1 /*
2  * Copyright 2019 GridGain Systems, Inc. and Contributors.
3  *
4  * Licensed under the GridGain Community Edition License (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * https://www.gridgain.com/products/software/community-edition/gridgain-community-edition-license
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
22 #ifndef _IGNITE_BINARY_BINARY_CONSTS
23 #define _IGNITE_BINARY_BINARY_CONSTS
24 
25 namespace ignite
26 {
27  namespace binary
28  {
33  {
34  enum Type
35  {
39  UNDEFINED = 0,
40 
45 
50 
54  HASH_SET = 3,
55 
60  };
61  };
62 
66  struct MapType
67  {
68  enum Type
69  {
73  UNDEFINED = 0,
74 
78  HASH_MAP = 1,
79 
84  };
85  };
86  }
87 }
88 
89 #endif //_IGNITE_BINARY_BINARY_CONSTS
ignite
Ignite API.
Definition: cache.h:47
ignite::binary::MapType::Type
Type
Definition: binary_consts.h:68
ignite::binary::MapType::HASH_MAP
@ HASH_MAP
Hash map.
Definition: binary_consts.h:78
ignite::binary::MapType::LINKED_HASH_MAP
@ LINKED_HASH_MAP
Linked hash map.
Definition: binary_consts.h:83
ignite::binary::MapType::UNDEFINED
@ UNDEFINED
Undefined.
Definition: binary_consts.h:73
ignite::binary::CollectionType::UNDEFINED
@ UNDEFINED
Undefined.
Definition: binary_consts.h:39
ignite::binary::CollectionType::ARRAY_LIST
@ ARRAY_LIST
Array list.
Definition: binary_consts.h:44
ignite::binary::CollectionType
Binary collection types.
Definition: binary_consts.h:32
ignite::binary::MapType
Binary map types.
Definition: binary_consts.h:66
ignite::binary::CollectionType::Type
Type
Definition: binary_consts.h:34
ignite::binary::CollectionType::LINKED_LIST
@ LINKED_LIST
Linked list.
Definition: binary_consts.h:49
ignite::binary::CollectionType::LINKED_HASH_SET
@ LINKED_HASH_SET
Linked hash set.
Definition: binary_consts.h:59
ignite::binary::CollectionType::HASH_SET
@ HASH_SET
Hash set.
Definition: binary_consts.h:54