Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 4DAB3200C02 for ; Fri, 20 Jan 2017 20:18:38 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 4C5F8160B7D; Fri, 20 Jan 2017 19:18:38 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id F3CBD160B61 for ; Fri, 20 Jan 2017 20:18:36 +0100 (CET) Received: (qmail 88004 invoked by uid 500); 20 Jan 2017 19:18:36 -0000 Mailing-List: contact commits-help@kudu.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@kudu.apache.org Delivered-To: mailing list commits@kudu.apache.org Received: (qmail 87438 invoked by uid 99); 20 Jan 2017 19:18:35 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Jan 2017 19:18:35 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 73B0DF1757; Fri, 20 Jan 2017 19:18:35 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: todd@apache.org To: commits@kudu.apache.org Date: Fri, 20 Jan 2017 19:18:43 -0000 Message-Id: <5194e3fefd2248eca315cf2bcf8a29c1@git.apache.org> In-Reply-To: <46889001f20f48bba1bd694541af91af@git.apache.org> References: <46889001f20f48bba1bd694541af91af@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [09/51] [partial] kudu git commit: Update site for 1.2.0 release archived-at: Fri, 20 Jan 2017 19:18:38 -0000 http://git-wip-us.apache.org/repos/asf/kudu/blob/95b9a7ab/cpp-client-api/value_8h_source.html ---------------------------------------------------------------------- diff --git a/cpp-client-api/value_8h_source.html b/cpp-client-api/value_8h_source.html index c48185f..7a442e4 100644 --- a/cpp-client-api/value_8h_source.html +++ b/cpp-client-api/value_8h_source.html @@ -3,15 +3,16 @@ - + Kudu C++ client API: include/kudu/client/value.h Source File + @@ -21,7 +22,7 @@ - @@ -30,7 +31,7 @@
+
Kudu C++ client API
- + @@ -69,7 +70,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search'); onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> - All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages +
@@ -80,7 +81,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
@@ -88,76 +89,17 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
value.h
-
1 // Licensed to the Apache Software Foundation (ASF) under one
-
2 // or more contributor license agreements. See the NOTICE file
-
3 // distributed with this work for additional information
-
4 // regarding copyright ownership. The ASF licenses this file
-
5 // to you under the Apache License, Version 2.0 (the
-
6 // "License"); you may not use this file except in compliance
-
7 // with the License. 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,
-
12 // software distributed under the License is distributed on an
-
13 // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-
14 // KIND, either express or implied. See the License for the
-
15 // specific language governing permissions and limitations
-
16 // under the License.
-
17 #ifndef KUDU_CLIENT_VALUE_H
-
18 #define KUDU_CLIENT_VALUE_H
-
19 
-
20 #ifdef KUDU_HEADERS_NO_STUBS
-
21 #include "kudu/gutil/macros.h"
-
22 #include "kudu/gutil/port.h"
-
23 #else
-
24 #include "kudu/client/stubs.h"
-
25 #endif
-
26 #include "kudu/util/slice.h"
-
27 #include "kudu/util/kudu_export.h"
-
28 
-
29 namespace kudu {
-
30 namespace client {
-
31 
-
33 class KUDU_EXPORT KuduValue {
-
34  public:
-
36  KuduValue* Clone() const;
-
37 
-
47  static KuduValue* FromInt(int64_t val);
-
48  static KuduValue* FromFloat(float f);
-
49  static KuduValue* FromDouble(double d);
-
50  static KuduValue* FromBool(bool b);
-
52 
-
58  static KuduValue* CopyString(Slice s);
-
59 
-
60  ~KuduValue();
-
61  private:
-
62  friend class ComparisonPredicateData;
-
63  friend class InListPredicateData;
-
64  friend class KuduColumnSpec;
-
65 
-
66  class KUDU_NO_EXPORT Data;
-
67  explicit KuduValue(Data* d);
-
68 
-
69  // Owned.
-
70  Data* data_;
-
71 
-
72  DISALLOW_COPY_AND_ASSIGN(KuduValue);
-
73 };
-
74 
-
75 } // namespace client
-
76 } // namespace kudu
-
77 #endif /* KUDU_CLIENT_VALUE_H */
-
A constant cell value with a specific type.
Definition: value.h:33
-
Builder API for specifying or altering a column within a table schema.
Definition: schema.h:227
+
1 // Licensed to the Apache Software Foundation (ASF) under one
2 // or more contributor license agreements. See the NOTICE file
3 // distributed with this work for additional information
4 // regarding copyright ownership. The ASF licenses this file
5 // to you under the Apache License, Version 2.0 (the
6 // "License& quot;); you may not use this file except in compliance
7 // with the License. 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,
12 // software distributed under the License is distributed on an
13 // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14 // KIND, either express or implied. See the License for the
15 // specific language governing permissions and limitations
16 // under the License.
17 #ifndef KUDU_CLIENT_VALUE_H
18 #define KUDU_CLIENT_VALUE_H
19< /span> 
20 #ifdef KUDU_HEADERS_NO_STUBS
21 #include "kudu/gutil/macros.h"
22 #include "kudu/gutil/port.h"
23 #else
24 #include "kudu/client/stubs.h"
25 #endif
26 #include "kudu/util/slice.h"
27 #include "kudu/util/kudu_export.h"
28 
29 namespace kudu {
30 namespace client {
31 
33 class KUDU_EXPORT KuduValue {
34  public:
36  KuduValue* Clone() const;
37 
47  static KuduValue* FromInt(int64_t val);
48  static KuduValue* FromFloat(float f);
49  static KuduValue* FromDouble(double d);
50  static KuduValue* FromBool(bool b);
52 
58  static KuduValue* CopyString(Slice s);
59 
60  ~KuduValue();
61  private:
62  friend class ComparisonPredicateData;
63  friend class InListPredicateData;
64  friend class KuduColumnSpec;
65 
66  class KUDU_NO_EXPORT Data;
67  explicit< /span> KuduValue(Data* d);
68 
69  // Owned.
70  Data* data_;
71 
72  DISALLOW_COPY_AND_ASSIGN(KuduValue);
73 };
74 
75 } // namespace client
76 } // namespace kudu
77 #endif /* KUDU_CLIENT_VALUE_H */
A constant cell value with a specific type.
Definition: value.h:33
+
Definition: callbacks.h:28
+
Builder API for specifying or altering a column within a table schema.
Definition: schema.h:230
A wrapper around externally allocated data.
Definition: slice.h:43