-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-values-obj.vm
54 lines (37 loc) · 1.09 KB
/
test-values-obj.vm
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
## TEST $values
$values
$values
$valuesxxx
${values}
${values}
${ values} ## OK
${values } ## OK
${values ## OK
$values}
#set( $values = $fn.buildValues($entity.attributes, 1) )
$values.allValues
${values.allValues }
${ values.allValues } ## OK
$values.size()
${values.size()}
${values.size() }
$values.getValue($attribute.name)
${values.getValue($attribute.name)}
$values.comparisonStatement("book", $attribute)
$values.toFormattedJSON()
${values.toFormattedJSON()}
$values.toFormattedJSON($entity.keyAttributes)
${values.toFormattedJSON($entity.keyAttributes)}
$values.toJSON()
${values.toJSON()}
$values.toJSON( "${NEWLINE}${TAB}" )
${values.toJSON( "${NEWLINE}${TAB}" )}
$values.toJSON( $entity.nonKeyAttributes, "${NEWLINE}${TAB}", "${NEWLINE}" )
$values.toJSON($entity.keyAttributes)
${values.toJSON($entity.keyAttributes) }
$values.toJSON( $entity.nonKeyAttributes, "${NEWLINE}${TAB}" )
$values.toJSON( $entity.nonKeyAttributes, "${NEWLINE}${TAB}", "${NEWLINE}" )
$values.toURI()
${values.toURI()}
$values.toURI($entity.keyAttributes)
${values.toURI($entity.keyAttributes)}