/Users/deen/code/yugabyte-db/src/yb/util/trilean.cc
Line | Count | Source (jump to first uncovered line) |
1 | | // Copyright (c) YugaByte, Inc. |
2 | | // |
3 | | // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except |
4 | | // in compliance with the License. You may obtain a copy of the License at |
5 | | // |
6 | | // http://www.apache.org/licenses/LICENSE-2.0 |
7 | | // |
8 | | // Unless required by applicable law or agreed to in writing, software distributed under the License |
9 | | // is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
10 | | // or implied. See the License for the specific language governing permissions and limitations |
11 | | // under the License. |
12 | | // |
13 | | |
14 | | #include "yb/util/trilean.h" |
15 | | #include "yb/gutil/strings/substitute.h" |
16 | | |
17 | | using strings::Substitute; |
18 | | |
19 | | namespace yb { |
20 | | |
21 | 0 | std::string TrileanToStr(Trilean value) { |
22 | 0 | switch (value) { |
23 | 0 | case Trilean::kFalse: |
24 | 0 | return "false"; |
25 | 0 | case Trilean::kTrue: |
26 | 0 | return "true"; |
27 | 0 | case Trilean::kUnknown: |
28 | 0 | return "unknown"; |
29 | 0 | } |
30 | 0 | return Substitute("Trilean($0)"); |
31 | 0 | } |
32 | | |
33 | | } |
34 | | |