gitlab.com/evatix-go/core@v1.3.55/coreimpl/enumimpl/consts.go (about)

     1  package enumimpl
     2  
     3  const (
     4  	errUnmappedMessage = "typename:[%s], value given : [\"%s\"], cannot find in the enum map. " +
     5  		"reference values can be [%s], " +
     6  		"brackets values can be used to unmarshal as well."
     7  	typeNameTemplateKey                 = "type-name"
     8  	nameKey                             = "name"
     9  	valueKey                            = "value"
    10  	diffBetweenMapShouldBeMessageFormat = "%s\n\nDifference Between Map:\n\n{%s}"                // title, diff string
    11  	actualVsExpectingMessageFormat      = "%s :\n\nActual:\n%s\n\nExpecting:\n%s\n\n"            // title, actual, expecting
    12  	curlyWrapFormat                     = "{\n\n%s\n\n}"                                         // jsonValueString
    13  	currentValueNotFoundInJsonMapFormat = "current given value (%v) is not found in the map. %s" // anyValue, RangesInvalidMessage
    14  )