forked from ohler55/ojg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
doc.go
68 lines (44 loc) · 1.99 KB
/
doc.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
// Copyright (c) 2020, Peter Ohler, All rights reserved.
/*
Package ojg is a collection of JSON tools including a validator and parser.
Oj
Package oj contains functions and types for parsing JSON as well as support
for building building simple types. Included in the oj package are:
Parser for parsing JSON strings and streams into simple types.
Validator for validating JSON strings and streams.
Builder for building simple types.
Writer for writing data as JSON.
Gen
Package gen provides type safe generic types. They are type safe in that array
and objects can only be constructed of other types in the package. The basic
types are:
Bool
Int
Float
String
Time
The collection types are Array and Object. All the types implement the Node
interface which is relatively simple interface defined primarily to restrict
what can be in the collection types. The Node interface should not be used to
define new generic types.
Also included in the package are a builder and parser that behave like the
parser and builder in the oj package except for gen types.
Jp
Package jp provides JSONPath implementation that operations on simple go
types, generic (gen package), and public struct with public members. Get, set,
and delete operations can be evaluated on data. When needed reflection is used
to follow a path.
Alt
The alt package contains functions and types for altering values. It includes functions for:
Decompose() a value into simple types of bool, int64, float64, string,
time.Time, []interface{} and map[string]interface{}.
Recompose() takes simple data type and converts it back into a complex type.
Alter() is the same as decompose except it alters the value in place.
Generify() converts a simple value into a gen.Node.
Cmd oj
The oj command is a general purpose tool for processing JSON
documents. Features include reformatting JSON, colorizing JSON, extracting
parts of a JSON document, and filtering. JSONPath is used for both extracting
and filtering.
*/
package ojg