forked from hashicorp/terraform-plugin-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpression_step_element_key_string_exact.go
47 lines (36 loc) · 1.42 KB
/
expression_step_element_key_string_exact.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
package path
import (
"fmt"
)
// Ensure ExpressionStepElementKeyStringExact satisfies the ExpressionStep
// interface.
var _ ExpressionStep = ExpressionStepElementKeyStringExact("")
// ExpressionStepElementKeyStringExact is an attribute path expression for an exact string
// key within a map. Map keys are always strings.
type ExpressionStepElementKeyStringExact string
// Equal returns true if the given ExpressionStep is a
// ExpressionStepElementKeyStringExact and the string element key is equivalent.
func (s ExpressionStepElementKeyStringExact) Equal(o ExpressionStep) bool {
other, ok := o.(ExpressionStepElementKeyStringExact)
if !ok {
return false
}
return string(s) == string(other)
}
// Matches returns true if the given PathStep is fulfilled by the
// ExpressionStepElementKeyStringExact condition.
func (s ExpressionStepElementKeyStringExact) Matches(pathStep PathStep) bool {
pathStepElementKeyString, ok := pathStep.(PathStepElementKeyString)
if !ok {
return false
}
return string(s) == string(pathStepElementKeyString)
}
// String returns the human-readable representation of the element key
// expression. It is intended for logging and error messages and is not
// protected by compatibility guarantees.
func (s ExpressionStepElementKeyStringExact) String() string {
return fmt.Sprintf("[%q]", string(s))
}
// unexported satisfies the Step interface.
func (s ExpressionStepElementKeyStringExact) unexported() {}