forked from cloudfoundry/bosh-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
interfaces.go
94 lines (71 loc) · 1.16 KB
/
interfaces.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
package table
import (
"time"
semver "github.com/cppforlife/go-semi-semantic/version"
)
type Table struct {
Title string
Content string
// Either strings or values should be provided
Header []string
HeaderVals []Value
SortBy []ColumnSort
// Either sections or rows should be provided
Sections []Section
Rows [][]Value
Notes []string
// Formatting
FillFirstColumn bool
BackgroundStr string
BorderStr string
}
type Section struct {
FirstColumn Value
Rows [][]Value
}
type ColumnSort struct {
Column int
Asc bool
}
type Value interface {
Value() Value
String() string
Compare(Value) int
}
type ValueString struct {
S string
}
type ValueStrings struct {
S []string
}
type ValueInt struct {
I int
}
type ValueBytes struct {
I uint64
}
type ValueTime struct {
T time.Time
}
type ValueBool struct {
B bool
}
type ValueVersion struct {
V semver.Version
}
type ValueInterface struct {
I interface{}
}
type ValueError struct {
E error
}
type ValueNone struct{}
type ValueFmt struct {
V Value
Error bool
Func func(string, ...interface{}) string
}
type ValueSuffix struct {
V Value
Suffix string
}