nidus-sync/db/enums/enums.bob.go

11113 lines
507 KiB
Go

// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package enums
import (
"database/sql/driver"
"fmt"
)
// Enum values for Arcgislicensetype
const (
ArcgislicensetypeAdvancedut Arcgislicensetype = "advancedUT"
ArcgislicensetypeBasicut Arcgislicensetype = "basicUT"
ArcgislicensetypeCreatorut Arcgislicensetype = "creatorUT"
ArcgislicensetypeEditorut Arcgislicensetype = "editorUT"
ArcgislicensetypeFieldworkerut Arcgislicensetype = "fieldWorkerUT"
ArcgislicensetypeGisprofessionaladvut Arcgislicensetype = "GISProfessionalAdvUT"
ArcgislicensetypeGisprofessionalbasicut Arcgislicensetype = "GISProfessionalBasicUT"
ArcgislicensetypeGisprofessionalstdut Arcgislicensetype = "GISProfessionalStdUT"
ArcgislicensetypeIndoorsuserut Arcgislicensetype = "IndoorsUserUT"
ArcgislicensetypeInsightsanalystut Arcgislicensetype = "insightsAnalystUT"
ArcgislicensetypeLiteut Arcgislicensetype = "liteUT"
ArcgislicensetypeStandardut Arcgislicensetype = "standardUT"
ArcgislicensetypeStorytellerut Arcgislicensetype = "storytellerUT"
ArcgislicensetypeViewerut Arcgislicensetype = "viewerUT"
)
func AllArcgislicensetype() []Arcgislicensetype {
return []Arcgislicensetype{
ArcgislicensetypeAdvancedut,
ArcgislicensetypeBasicut,
ArcgislicensetypeCreatorut,
ArcgislicensetypeEditorut,
ArcgislicensetypeFieldworkerut,
ArcgislicensetypeGisprofessionaladvut,
ArcgislicensetypeGisprofessionalbasicut,
ArcgislicensetypeGisprofessionalstdut,
ArcgislicensetypeIndoorsuserut,
ArcgislicensetypeInsightsanalystut,
ArcgislicensetypeLiteut,
ArcgislicensetypeStandardut,
ArcgislicensetypeStorytellerut,
ArcgislicensetypeViewerut,
}
}
type Arcgislicensetype string
func (e Arcgislicensetype) String() string {
return string(e)
}
func (e Arcgislicensetype) Valid() bool {
switch e {
case ArcgislicensetypeAdvancedut,
ArcgislicensetypeBasicut,
ArcgislicensetypeCreatorut,
ArcgislicensetypeEditorut,
ArcgislicensetypeFieldworkerut,
ArcgislicensetypeGisprofessionaladvut,
ArcgislicensetypeGisprofessionalbasicut,
ArcgislicensetypeGisprofessionalstdut,
ArcgislicensetypeIndoorsuserut,
ArcgislicensetypeInsightsanalystut,
ArcgislicensetypeLiteut,
ArcgislicensetypeStandardut,
ArcgislicensetypeStorytellerut,
ArcgislicensetypeViewerut:
return true
default:
return false
}
}
// useful when testing in other packages
func (e Arcgislicensetype) All() []Arcgislicensetype {
return AllArcgislicensetype()
}
func (e Arcgislicensetype) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *Arcgislicensetype) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e Arcgislicensetype) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *Arcgislicensetype) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e Arcgislicensetype) Value() (driver.Value, error) {
return string(e), nil
}
func (e *Arcgislicensetype) Scan(value any) error {
switch x := value.(type) {
case string:
*e = Arcgislicensetype(x)
case []byte:
*e = Arcgislicensetype(x)
case nil:
return fmt.Errorf("cannot nil into Arcgislicensetype")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid Arcgislicensetype value: %s", *e)
}
return nil
}
// Enum values for FieldseekerContainerrelateMosquitocontainertypeEnum
const (
FieldseekerContainerrelateMosquitocontainertypeEnumAquarium FieldseekerContainerrelateMosquitocontainertypeEnum = "Aquarium"
FieldseekerContainerrelateMosquitocontainertypeEnumFlowerPot FieldseekerContainerrelateMosquitocontainertypeEnum = "Flower pot"
FieldseekerContainerrelateMosquitocontainertypeEnum5GallonBucket FieldseekerContainerrelateMosquitocontainertypeEnum = "5 gallon bucket"
FieldseekerContainerrelateMosquitocontainertypeEnumFountain FieldseekerContainerrelateMosquitocontainertypeEnum = "Fountain"
FieldseekerContainerrelateMosquitocontainertypeEnumBirdBath FieldseekerContainerrelateMosquitocontainertypeEnum = "Bird bath"
)
func AllFieldseekerContainerrelateMosquitocontainertypeEnum() []FieldseekerContainerrelateMosquitocontainertypeEnum {
return []FieldseekerContainerrelateMosquitocontainertypeEnum{
FieldseekerContainerrelateMosquitocontainertypeEnumAquarium,
FieldseekerContainerrelateMosquitocontainertypeEnumFlowerPot,
FieldseekerContainerrelateMosquitocontainertypeEnum5GallonBucket,
FieldseekerContainerrelateMosquitocontainertypeEnumFountain,
FieldseekerContainerrelateMosquitocontainertypeEnumBirdBath,
}
}
type FieldseekerContainerrelateMosquitocontainertypeEnum string
func (e FieldseekerContainerrelateMosquitocontainertypeEnum) String() string {
return string(e)
}
func (e FieldseekerContainerrelateMosquitocontainertypeEnum) Valid() bool {
switch e {
case FieldseekerContainerrelateMosquitocontainertypeEnumAquarium,
FieldseekerContainerrelateMosquitocontainertypeEnumFlowerPot,
FieldseekerContainerrelateMosquitocontainertypeEnum5GallonBucket,
FieldseekerContainerrelateMosquitocontainertypeEnumFountain,
FieldseekerContainerrelateMosquitocontainertypeEnumBirdBath:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerContainerrelateMosquitocontainertypeEnum) All() []FieldseekerContainerrelateMosquitocontainertypeEnum {
return AllFieldseekerContainerrelateMosquitocontainertypeEnum()
}
func (e FieldseekerContainerrelateMosquitocontainertypeEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerContainerrelateMosquitocontainertypeEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerContainerrelateMosquitocontainertypeEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerContainerrelateMosquitocontainertypeEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerContainerrelateMosquitocontainertypeEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerContainerrelateMosquitocontainertypeEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerContainerrelateMosquitocontainertypeEnum(x)
case []byte:
*e = FieldseekerContainerrelateMosquitocontainertypeEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerContainerrelateMosquitocontainertypeEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerContainerrelateMosquitocontainertypeEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum
const (
FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum0 FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum = "0"
FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum1 FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum = "1"
FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum2 FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum = "2"
FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum3 FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum = "3"
)
func AllFieldseekerFieldscoutinglogFieldscoutingsymbologyEnum() []FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum {
return []FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum{
FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum0,
FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum1,
FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum2,
FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum3,
}
}
type FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum string
func (e FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum) String() string {
return string(e)
}
func (e FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum) Valid() bool {
switch e {
case FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum0,
FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum1,
FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum2,
FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum3:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum) All() []FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum {
return AllFieldseekerFieldscoutinglogFieldscoutingsymbologyEnum()
}
func (e FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum(x)
case []byte:
*e = FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerFieldscoutinglogFieldscoutingsymbologyEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284
const (
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Orchard FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "orchard"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284RowCrops FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "row_crops"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284VineCrops FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "vine_crops"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284AgGrassesOrGrain FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "ag_grasses_or_grain"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Pasture FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "pasture"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284IrrigationStandpipe FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "irrigation_standpipe"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Ditch FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "ditch"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Pond FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "pond"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Sump FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "sump"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Drain FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "drain"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284DairyLagoon FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "dairy_lagoon"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284WastewaterTreatment FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "wastewater_treatment"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Trough FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "trough"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Depression FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "depression"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Gutter FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "gutter"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284RainGutter FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "rain_gutter"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Culvert FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "culvert"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Utility FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "utility"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284CatchBasin FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "catch_basin"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284StreamOrCreek FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "stream_or_creek"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Slough FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "slough"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284River FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "river"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284MarshOrWetlands FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "marsh_or_wetlands"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Containers FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "containers"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284WateringBowl FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "watering_bowl"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284PlantSaucer FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "plant_saucer"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284YardDrain FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "yard_drain"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284PlantAxil FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "plant_axil"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Treehole FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "treehole"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284FountainOrWaterFeature FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "fountain_or_water_feature"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284BirdBath FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "bird_bath"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284MiscWaterAccumulation FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "misc_water_accumulation"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284TarpOrCover FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "tarp_or_cover"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284SwimmingPool FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "swimming_pool"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284AbovegroundPool FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "aboveground_pool"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284KidPool FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "kid_pool"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284HotTub FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "hot_tub"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Appliance FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "appliance"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Tires FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "tires"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284FloodedStructure FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "flooded_structure"
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284LowPoint FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 = "low_point"
)
func AllFieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284() []FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 {
return []FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284{
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Orchard,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284RowCrops,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284VineCrops,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284AgGrassesOrGrain,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Pasture,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284IrrigationStandpipe,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Ditch,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Pond,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Sump,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Drain,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284DairyLagoon,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284WastewaterTreatment,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Trough,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Depression,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Gutter,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284RainGutter,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Culvert,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Utility,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284CatchBasin,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284StreamOrCreek,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Slough,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284River,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284MarshOrWetlands,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Containers,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284WateringBowl,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284PlantSaucer,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284YardDrain,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284PlantAxil,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Treehole,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284FountainOrWaterFeature,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284BirdBath,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284MiscWaterAccumulation,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284TarpOrCover,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284SwimmingPool,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284AbovegroundPool,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284KidPool,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284HotTub,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Appliance,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Tires,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284FloodedStructure,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284LowPoint,
}
}
type FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 string
func (e FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284) String() string {
return string(e)
}
func (e FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284) Valid() bool {
switch e {
case FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Orchard,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284RowCrops,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284VineCrops,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284AgGrassesOrGrain,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Pasture,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284IrrigationStandpipe,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Ditch,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Pond,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Sump,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Drain,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284DairyLagoon,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284WastewaterTreatment,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Trough,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Depression,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Gutter,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284RainGutter,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Culvert,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Utility,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284CatchBasin,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284StreamOrCreek,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Slough,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284River,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284MarshOrWetlands,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Containers,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284WateringBowl,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284PlantSaucer,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284YardDrain,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284PlantAxil,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Treehole,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284FountainOrWaterFeature,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284BirdBath,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284MiscWaterAccumulation,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284TarpOrCover,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284SwimmingPool,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284AbovegroundPool,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284KidPool,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284HotTub,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Appliance,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284Tires,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284FloodedStructure,
FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284LowPoint:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284) All() []FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 {
return AllFieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284()
}
func (e FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284(x)
case []byte:
*e = FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerHabitatrelateHabitatrelateHabitattype2e81cf2f550e400783cf284 value: %s", *e)
}
return nil
}
// Enum values for FieldseekerInspectionsampleNotinuitFEnum
const (
FieldseekerInspectionsampleNotinuitFEnum1 FieldseekerInspectionsampleNotinuitFEnum = "1"
FieldseekerInspectionsampleNotinuitFEnum0 FieldseekerInspectionsampleNotinuitFEnum = "0"
)
func AllFieldseekerInspectionsampleNotinuitFEnum() []FieldseekerInspectionsampleNotinuitFEnum {
return []FieldseekerInspectionsampleNotinuitFEnum{
FieldseekerInspectionsampleNotinuitFEnum1,
FieldseekerInspectionsampleNotinuitFEnum0,
}
}
type FieldseekerInspectionsampleNotinuitFEnum string
func (e FieldseekerInspectionsampleNotinuitFEnum) String() string {
return string(e)
}
func (e FieldseekerInspectionsampleNotinuitFEnum) Valid() bool {
switch e {
case FieldseekerInspectionsampleNotinuitFEnum1,
FieldseekerInspectionsampleNotinuitFEnum0:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerInspectionsampleNotinuitFEnum) All() []FieldseekerInspectionsampleNotinuitFEnum {
return AllFieldseekerInspectionsampleNotinuitFEnum()
}
func (e FieldseekerInspectionsampleNotinuitFEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerInspectionsampleNotinuitFEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerInspectionsampleNotinuitFEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerInspectionsampleNotinuitFEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerInspectionsampleNotinuitFEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerInspectionsampleNotinuitFEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerInspectionsampleNotinuitFEnum(x)
case []byte:
*e = FieldseekerInspectionsampleNotinuitFEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerInspectionsampleNotinuitFEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerInspectionsampleNotinuitFEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerInspectionsampledetailMosquitoadultactivityEnum
const (
FieldseekerInspectionsampledetailMosquitoadultactivityEnumNone FieldseekerInspectionsampledetailMosquitoadultactivityEnum = "None"
FieldseekerInspectionsampledetailMosquitoadultactivityEnumLight FieldseekerInspectionsampledetailMosquitoadultactivityEnum = "Light"
FieldseekerInspectionsampledetailMosquitoadultactivityEnumModerate FieldseekerInspectionsampledetailMosquitoadultactivityEnum = "Moderate"
FieldseekerInspectionsampledetailMosquitoadultactivityEnumIntense FieldseekerInspectionsampledetailMosquitoadultactivityEnum = "Intense"
)
func AllFieldseekerInspectionsampledetailMosquitoadultactivityEnum() []FieldseekerInspectionsampledetailMosquitoadultactivityEnum {
return []FieldseekerInspectionsampledetailMosquitoadultactivityEnum{
FieldseekerInspectionsampledetailMosquitoadultactivityEnumNone,
FieldseekerInspectionsampledetailMosquitoadultactivityEnumLight,
FieldseekerInspectionsampledetailMosquitoadultactivityEnumModerate,
FieldseekerInspectionsampledetailMosquitoadultactivityEnumIntense,
}
}
type FieldseekerInspectionsampledetailMosquitoadultactivityEnum string
func (e FieldseekerInspectionsampledetailMosquitoadultactivityEnum) String() string {
return string(e)
}
func (e FieldseekerInspectionsampledetailMosquitoadultactivityEnum) Valid() bool {
switch e {
case FieldseekerInspectionsampledetailMosquitoadultactivityEnumNone,
FieldseekerInspectionsampledetailMosquitoadultactivityEnumLight,
FieldseekerInspectionsampledetailMosquitoadultactivityEnumModerate,
FieldseekerInspectionsampledetailMosquitoadultactivityEnumIntense:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerInspectionsampledetailMosquitoadultactivityEnum) All() []FieldseekerInspectionsampledetailMosquitoadultactivityEnum {
return AllFieldseekerInspectionsampledetailMosquitoadultactivityEnum()
}
func (e FieldseekerInspectionsampledetailMosquitoadultactivityEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerInspectionsampledetailMosquitoadultactivityEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerInspectionsampledetailMosquitoadultactivityEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerInspectionsampledetailMosquitoadultactivityEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerInspectionsampledetailMosquitoadultactivityEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerInspectionsampledetailMosquitoadultactivityEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerInspectionsampledetailMosquitoadultactivityEnum(x)
case []byte:
*e = FieldseekerInspectionsampledetailMosquitoadultactivityEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerInspectionsampledetailMosquitoadultactivityEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerInspectionsampledetailMosquitoadultactivityEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerInspectionsampledetailMosquitodominantstageEnum
const (
FieldseekerInspectionsampledetailMosquitodominantstageEnum1 FieldseekerInspectionsampledetailMosquitodominantstageEnum = "1"
FieldseekerInspectionsampledetailMosquitodominantstageEnum2 FieldseekerInspectionsampledetailMosquitodominantstageEnum = "2"
FieldseekerInspectionsampledetailMosquitodominantstageEnum3 FieldseekerInspectionsampledetailMosquitodominantstageEnum = "3"
FieldseekerInspectionsampledetailMosquitodominantstageEnum4 FieldseekerInspectionsampledetailMosquitodominantstageEnum = "4"
FieldseekerInspectionsampledetailMosquitodominantstageEnum1_2 FieldseekerInspectionsampledetailMosquitodominantstageEnum = "1-2"
FieldseekerInspectionsampledetailMosquitodominantstageEnum3_4 FieldseekerInspectionsampledetailMosquitodominantstageEnum = "3-4"
)
func AllFieldseekerInspectionsampledetailMosquitodominantstageEnum() []FieldseekerInspectionsampledetailMosquitodominantstageEnum {
return []FieldseekerInspectionsampledetailMosquitodominantstageEnum{
FieldseekerInspectionsampledetailMosquitodominantstageEnum1,
FieldseekerInspectionsampledetailMosquitodominantstageEnum2,
FieldseekerInspectionsampledetailMosquitodominantstageEnum3,
FieldseekerInspectionsampledetailMosquitodominantstageEnum4,
FieldseekerInspectionsampledetailMosquitodominantstageEnum1_2,
FieldseekerInspectionsampledetailMosquitodominantstageEnum3_4,
}
}
type FieldseekerInspectionsampledetailMosquitodominantstageEnum string
func (e FieldseekerInspectionsampledetailMosquitodominantstageEnum) String() string {
return string(e)
}
func (e FieldseekerInspectionsampledetailMosquitodominantstageEnum) Valid() bool {
switch e {
case FieldseekerInspectionsampledetailMosquitodominantstageEnum1,
FieldseekerInspectionsampledetailMosquitodominantstageEnum2,
FieldseekerInspectionsampledetailMosquitodominantstageEnum3,
FieldseekerInspectionsampledetailMosquitodominantstageEnum4,
FieldseekerInspectionsampledetailMosquitodominantstageEnum1_2,
FieldseekerInspectionsampledetailMosquitodominantstageEnum3_4:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerInspectionsampledetailMosquitodominantstageEnum) All() []FieldseekerInspectionsampledetailMosquitodominantstageEnum {
return AllFieldseekerInspectionsampledetailMosquitodominantstageEnum()
}
func (e FieldseekerInspectionsampledetailMosquitodominantstageEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerInspectionsampledetailMosquitodominantstageEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerInspectionsampledetailMosquitodominantstageEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerInspectionsampledetailMosquitodominantstageEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerInspectionsampledetailMosquitodominantstageEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerInspectionsampledetailMosquitodominantstageEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerInspectionsampledetailMosquitodominantstageEnum(x)
case []byte:
*e = FieldseekerInspectionsampledetailMosquitodominantstageEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerInspectionsampledetailMosquitodominantstageEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerInspectionsampledetailMosquitodominantstageEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerInspectionsampledetailMosquitofieldspeciesEnum
const (
FieldseekerInspectionsampledetailMosquitofieldspeciesEnumAedes FieldseekerInspectionsampledetailMosquitofieldspeciesEnum = "Aedes"
FieldseekerInspectionsampledetailMosquitofieldspeciesEnumCulex FieldseekerInspectionsampledetailMosquitofieldspeciesEnum = "Culex"
)
func AllFieldseekerInspectionsampledetailMosquitofieldspeciesEnum() []FieldseekerInspectionsampledetailMosquitofieldspeciesEnum {
return []FieldseekerInspectionsampledetailMosquitofieldspeciesEnum{
FieldseekerInspectionsampledetailMosquitofieldspeciesEnumAedes,
FieldseekerInspectionsampledetailMosquitofieldspeciesEnumCulex,
}
}
type FieldseekerInspectionsampledetailMosquitofieldspeciesEnum string
func (e FieldseekerInspectionsampledetailMosquitofieldspeciesEnum) String() string {
return string(e)
}
func (e FieldseekerInspectionsampledetailMosquitofieldspeciesEnum) Valid() bool {
switch e {
case FieldseekerInspectionsampledetailMosquitofieldspeciesEnumAedes,
FieldseekerInspectionsampledetailMosquitofieldspeciesEnumCulex:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerInspectionsampledetailMosquitofieldspeciesEnum) All() []FieldseekerInspectionsampledetailMosquitofieldspeciesEnum {
return AllFieldseekerInspectionsampledetailMosquitofieldspeciesEnum()
}
func (e FieldseekerInspectionsampledetailMosquitofieldspeciesEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerInspectionsampledetailMosquitofieldspeciesEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerInspectionsampledetailMosquitofieldspeciesEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerInspectionsampledetailMosquitofieldspeciesEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerInspectionsampledetailMosquitofieldspeciesEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerInspectionsampledetailMosquitofieldspeciesEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerInspectionsampledetailMosquitofieldspeciesEnum(x)
case []byte:
*e = FieldseekerInspectionsampledetailMosquitofieldspeciesEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerInspectionsampledetailMosquitofieldspeciesEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerInspectionsampledetailMosquitofieldspeciesEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418
const (
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Orchard FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "orchard"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418RowCrops FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "row_crops"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418VineCrops FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "vine_crops"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418AgGrassesOrGrain FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "ag_grasses_or_grain"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Pasture FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "pasture"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418IrrigationStandpipe FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "irrigation_standpipe"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Ditch FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "ditch"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Pond FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "pond"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Sump FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "sump"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Drain FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "drain"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418DairyLagoon FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "dairy_lagoon"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418WastewaterTreatment FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "wastewater_treatment"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Trough FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "trough"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Depression FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "depression"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Gutter FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "gutter"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418RainGutter FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "rain_gutter"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Culvert FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "culvert"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Utility FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "utility"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418CatchBasin FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "catch_basin"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418StreamOrCreek FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "stream_or_creek"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Slough FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "slough"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418River FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "river"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418MarshOrWetland FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "marsh_or_wetland"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Containers FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "containers"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418WateringBowl FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "watering_bowl"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418PlantSaucer FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "plant_saucer"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418YardDrain FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "yard_drain"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418PlantAxil FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "plant_axil"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Treehole FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "treehole"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418FountainOrWaterFeature FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "fountain_or_water_feature"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418BirdBath FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "bird_bath"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418MiscWaterAccumulation FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "misc_water_accumulation"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418TarpOrCover FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "tarp_or_cover"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418SwimmingPool FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "swimming_pool"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418AbovegroundPool FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "aboveground_pool"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418KidPool FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "kid_pool"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418HotTub FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "hot_tub"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Appliance FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "appliance"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Tires FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "tires"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418FloodedStructure FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "flooded_structure"
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418LowPoint FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 = "low_point"
)
func AllFieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418() []FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 {
return []FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418{
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Orchard,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418RowCrops,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418VineCrops,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418AgGrassesOrGrain,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Pasture,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418IrrigationStandpipe,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Ditch,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Pond,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Sump,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Drain,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418DairyLagoon,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418WastewaterTreatment,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Trough,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Depression,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Gutter,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418RainGutter,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Culvert,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Utility,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418CatchBasin,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418StreamOrCreek,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Slough,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418River,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418MarshOrWetland,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Containers,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418WateringBowl,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418PlantSaucer,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418YardDrain,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418PlantAxil,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Treehole,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418FountainOrWaterFeature,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418BirdBath,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418MiscWaterAccumulation,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418TarpOrCover,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418SwimmingPool,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418AbovegroundPool,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418KidPool,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418HotTub,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Appliance,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Tires,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418FloodedStructure,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418LowPoint,
}
}
type FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 string
func (e FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418) String() string {
return string(e)
}
func (e FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418) Valid() bool {
switch e {
case FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Orchard,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418RowCrops,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418VineCrops,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418AgGrassesOrGrain,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Pasture,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418IrrigationStandpipe,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Ditch,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Pond,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Sump,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Drain,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418DairyLagoon,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418WastewaterTreatment,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Trough,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Depression,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Gutter,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418RainGutter,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Culvert,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Utility,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418CatchBasin,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418StreamOrCreek,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Slough,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418River,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418MarshOrWetland,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Containers,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418WateringBowl,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418PlantSaucer,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418YardDrain,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418PlantAxil,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Treehole,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418FountainOrWaterFeature,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418BirdBath,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418MiscWaterAccumulation,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418TarpOrCover,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418SwimmingPool,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418AbovegroundPool,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418KidPool,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418HotTub,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Appliance,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418Tires,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418FloodedStructure,
FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418LowPoint:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418) All() []FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 {
return AllFieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418()
}
func (e FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418(x)
case []byte:
*e = FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerLinelocationLinelocationHabitatFc51bdc4f1954df58206d69ce1418 value: %s", *e)
}
return nil
}
// Enum values for FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80
const (
FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80Residential FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80 = "residential"
FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80Commercial FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80 = "commercial"
FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80Industrial FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80 = "industrial"
FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80Agricultural FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80 = "agricultural"
FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80MixedUse FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80 = "mixed_use"
FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80PublicDomain FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80 = "public_domain"
FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80Natural FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80 = "natural"
FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80Municipal FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80 = "municipal"
)
func AllFieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80() []FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80 {
return []FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80{
FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80Residential,
FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80Commercial,
FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80Industrial,
FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80Agricultural,
FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80MixedUse,
FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80PublicDomain,
FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80Natural,
FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80Municipal,
}
}
type FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80 string
func (e FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80) String() string {
return string(e)
}
func (e FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80) Valid() bool {
switch e {
case FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80Residential,
FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80Commercial,
FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80Industrial,
FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80Agricultural,
FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80MixedUse,
FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80PublicDomain,
FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80Natural,
FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80Municipal:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80) All() []FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80 {
return AllFieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80()
}
func (e FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80(x)
case []byte:
*e = FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerLinelocationLinelocationUsetype2aeca2e60d2f455c86fc34895dc80 value: %s", *e)
}
return nil
}
// Enum values for FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16
const (
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16FloodIrrigation FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16 = "flood_irrigation"
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16FurrowIrrigation FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16 = "furrow_irrigation"
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16DripIrrigation FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16 = "drip_irrigation"
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16SprinklerIrrigation FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16 = "sprinkler_irrigation"
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16WastewaterIrrigation FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16 = "wastewater_irrigation"
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16IrrigationRunoff FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16 = "irrigation_runoff"
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16RainwaterAccumulation FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16 = "rainwater_accumulation"
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16Leak FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16 = "leak"
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16Seepage FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16 = "seepage"
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16StoredWater FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16 = "stored_water"
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16WastewaterSystem FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16 = "wastewater_system"
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16PermanentNaturalWater FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16 = "permanent_natural_water"
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16TemporaryNaturalWater FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16 = "temporary_natural_water"
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16RecreationalOrOrnamentalWater FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16 = "recreational_or_ornamental_water"
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16WaterConveyance FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16 = "water_conveyance"
)
func AllFieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16() []FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16 {
return []FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16{
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16FloodIrrigation,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16FurrowIrrigation,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16DripIrrigation,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16SprinklerIrrigation,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16WastewaterIrrigation,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16IrrigationRunoff,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16RainwaterAccumulation,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16Leak,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16Seepage,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16StoredWater,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16WastewaterSystem,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16PermanentNaturalWater,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16TemporaryNaturalWater,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16RecreationalOrOrnamentalWater,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16WaterConveyance,
}
}
type FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16 string
func (e FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16) String() string {
return string(e)
}
func (e FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16) Valid() bool {
switch e {
case FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16FloodIrrigation,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16FurrowIrrigation,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16DripIrrigation,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16SprinklerIrrigation,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16WastewaterIrrigation,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16IrrigationRunoff,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16RainwaterAccumulation,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16Leak,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16Seepage,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16StoredWater,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16WastewaterSystem,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16PermanentNaturalWater,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16TemporaryNaturalWater,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16RecreationalOrOrnamentalWater,
FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16WaterConveyance:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16) All() []FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16 {
return AllFieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16()
}
func (e FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16(x)
case []byte:
*e = FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerLinelocationLinelocationWaterorigin84723D92306a46F48ef16 value: %s", *e)
}
return nil
}
// Enum values for FieldseekerLinelocationLocationpriorityEnum
const (
FieldseekerLinelocationLocationpriorityEnumLow FieldseekerLinelocationLocationpriorityEnum = "Low"
FieldseekerLinelocationLocationpriorityEnumMedium FieldseekerLinelocationLocationpriorityEnum = "Medium"
FieldseekerLinelocationLocationpriorityEnumHigh FieldseekerLinelocationLocationpriorityEnum = "High"
FieldseekerLinelocationLocationpriorityEnumNone FieldseekerLinelocationLocationpriorityEnum = "None"
)
func AllFieldseekerLinelocationLocationpriorityEnum() []FieldseekerLinelocationLocationpriorityEnum {
return []FieldseekerLinelocationLocationpriorityEnum{
FieldseekerLinelocationLocationpriorityEnumLow,
FieldseekerLinelocationLocationpriorityEnumMedium,
FieldseekerLinelocationLocationpriorityEnumHigh,
FieldseekerLinelocationLocationpriorityEnumNone,
}
}
type FieldseekerLinelocationLocationpriorityEnum string
func (e FieldseekerLinelocationLocationpriorityEnum) String() string {
return string(e)
}
func (e FieldseekerLinelocationLocationpriorityEnum) Valid() bool {
switch e {
case FieldseekerLinelocationLocationpriorityEnumLow,
FieldseekerLinelocationLocationpriorityEnumMedium,
FieldseekerLinelocationLocationpriorityEnumHigh,
FieldseekerLinelocationLocationpriorityEnumNone:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerLinelocationLocationpriorityEnum) All() []FieldseekerLinelocationLocationpriorityEnum {
return AllFieldseekerLinelocationLocationpriorityEnum()
}
func (e FieldseekerLinelocationLocationpriorityEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerLinelocationLocationpriorityEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerLinelocationLocationpriorityEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerLinelocationLocationpriorityEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerLinelocationLocationpriorityEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerLinelocationLocationpriorityEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerLinelocationLocationpriorityEnum(x)
case []byte:
*e = FieldseekerLinelocationLocationpriorityEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerLinelocationLocationpriorityEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerLinelocationLocationpriorityEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerLinelocationLocationsymbologyEnum
const (
FieldseekerLinelocationLocationsymbologyEnumAction FieldseekerLinelocationLocationsymbologyEnum = "ACTION"
FieldseekerLinelocationLocationsymbologyEnumInactive FieldseekerLinelocationLocationsymbologyEnum = "INACTIVE"
FieldseekerLinelocationLocationsymbologyEnumNone FieldseekerLinelocationLocationsymbologyEnum = "NONE"
)
func AllFieldseekerLinelocationLocationsymbologyEnum() []FieldseekerLinelocationLocationsymbologyEnum {
return []FieldseekerLinelocationLocationsymbologyEnum{
FieldseekerLinelocationLocationsymbologyEnumAction,
FieldseekerLinelocationLocationsymbologyEnumInactive,
FieldseekerLinelocationLocationsymbologyEnumNone,
}
}
type FieldseekerLinelocationLocationsymbologyEnum string
func (e FieldseekerLinelocationLocationsymbologyEnum) String() string {
return string(e)
}
func (e FieldseekerLinelocationLocationsymbologyEnum) Valid() bool {
switch e {
case FieldseekerLinelocationLocationsymbologyEnumAction,
FieldseekerLinelocationLocationsymbologyEnumInactive,
FieldseekerLinelocationLocationsymbologyEnumNone:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerLinelocationLocationsymbologyEnum) All() []FieldseekerLinelocationLocationsymbologyEnum {
return AllFieldseekerLinelocationLocationsymbologyEnum()
}
func (e FieldseekerLinelocationLocationsymbologyEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerLinelocationLocationsymbologyEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerLinelocationLocationsymbologyEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerLinelocationLocationsymbologyEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerLinelocationLocationsymbologyEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerLinelocationLocationsymbologyEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerLinelocationLocationsymbologyEnum(x)
case []byte:
*e = FieldseekerLinelocationLocationsymbologyEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerLinelocationLocationsymbologyEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerLinelocationLocationsymbologyEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerLinelocationNotinuitFEnum
const (
FieldseekerLinelocationNotinuitFEnum1 FieldseekerLinelocationNotinuitFEnum = "1"
FieldseekerLinelocationNotinuitFEnum0 FieldseekerLinelocationNotinuitFEnum = "0"
)
func AllFieldseekerLinelocationNotinuitFEnum() []FieldseekerLinelocationNotinuitFEnum {
return []FieldseekerLinelocationNotinuitFEnum{
FieldseekerLinelocationNotinuitFEnum1,
FieldseekerLinelocationNotinuitFEnum0,
}
}
type FieldseekerLinelocationNotinuitFEnum string
func (e FieldseekerLinelocationNotinuitFEnum) String() string {
return string(e)
}
func (e FieldseekerLinelocationNotinuitFEnum) Valid() bool {
switch e {
case FieldseekerLinelocationNotinuitFEnum1,
FieldseekerLinelocationNotinuitFEnum0:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerLinelocationNotinuitFEnum) All() []FieldseekerLinelocationNotinuitFEnum {
return AllFieldseekerLinelocationNotinuitFEnum()
}
func (e FieldseekerLinelocationNotinuitFEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerLinelocationNotinuitFEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerLinelocationNotinuitFEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerLinelocationNotinuitFEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerLinelocationNotinuitFEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerLinelocationNotinuitFEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerLinelocationNotinuitFEnum(x)
case []byte:
*e = FieldseekerLinelocationNotinuitFEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerLinelocationNotinuitFEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerLinelocationNotinuitFEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerMosquitoinspectionMosquitoactivityEnum
const (
FieldseekerMosquitoinspectionMosquitoactivityEnumRoutineInspection FieldseekerMosquitoinspectionMosquitoactivityEnum = "Routine inspection"
FieldseekerMosquitoinspectionMosquitoactivityEnumPreTreatment FieldseekerMosquitoinspectionMosquitoactivityEnum = "Pre-treatment"
FieldseekerMosquitoinspectionMosquitoactivityEnumMaintenance FieldseekerMosquitoinspectionMosquitoactivityEnum = "Maintenance"
FieldseekerMosquitoinspectionMosquitoactivityEnumUlv FieldseekerMosquitoinspectionMosquitoactivityEnum = "ULV"
FieldseekerMosquitoinspectionMosquitoactivityEnumBarrier FieldseekerMosquitoinspectionMosquitoactivityEnum = "BARRIER"
FieldseekerMosquitoinspectionMosquitoactivityEnumLogin FieldseekerMosquitoinspectionMosquitoactivityEnum = "LOGIN"
FieldseekerMosquitoinspectionMosquitoactivityEnumTreatsd FieldseekerMosquitoinspectionMosquitoactivityEnum = "TREATSD"
FieldseekerMosquitoinspectionMosquitoactivityEnumSD FieldseekerMosquitoinspectionMosquitoactivityEnum = "SD"
FieldseekerMosquitoinspectionMosquitoactivityEnumSitevisit FieldseekerMosquitoinspectionMosquitoactivityEnum = "SITEVISIT"
FieldseekerMosquitoinspectionMosquitoactivityEnumOnline FieldseekerMosquitoinspectionMosquitoactivityEnum = "ONLINE"
FieldseekerMosquitoinspectionMosquitoactivityEnumSync FieldseekerMosquitoinspectionMosquitoactivityEnum = "SYNC"
FieldseekerMosquitoinspectionMosquitoactivityEnumCreatesr FieldseekerMosquitoinspectionMosquitoactivityEnum = "CREATESR"
FieldseekerMosquitoinspectionMosquitoactivityEnumLC FieldseekerMosquitoinspectionMosquitoactivityEnum = "LC"
FieldseekerMosquitoinspectionMosquitoactivityEnumAcceptsr FieldseekerMosquitoinspectionMosquitoactivityEnum = "ACCEPTSR"
FieldseekerMosquitoinspectionMosquitoactivityEnumPoint FieldseekerMosquitoinspectionMosquitoactivityEnum = "POINT"
FieldseekerMosquitoinspectionMosquitoactivityEnumDownload FieldseekerMosquitoinspectionMosquitoactivityEnum = "DOWNLOAD"
FieldseekerMosquitoinspectionMosquitoactivityEnumCompletesr FieldseekerMosquitoinspectionMosquitoactivityEnum = "COMPLETESR"
FieldseekerMosquitoinspectionMosquitoactivityEnumPolygon FieldseekerMosquitoinspectionMosquitoactivityEnum = "POLYGON"
FieldseekerMosquitoinspectionMosquitoactivityEnumTrap FieldseekerMosquitoinspectionMosquitoactivityEnum = "TRAP"
FieldseekerMosquitoinspectionMosquitoactivityEnumSample FieldseekerMosquitoinspectionMosquitoactivityEnum = "SAMPLE"
FieldseekerMosquitoinspectionMosquitoactivityEnumQa FieldseekerMosquitoinspectionMosquitoactivityEnum = "QA"
FieldseekerMosquitoinspectionMosquitoactivityEnumPta FieldseekerMosquitoinspectionMosquitoactivityEnum = "PTA"
FieldseekerMosquitoinspectionMosquitoactivityEnumFieldscouting FieldseekerMosquitoinspectionMosquitoactivityEnum = "FIELDSCOUTING"
FieldseekerMosquitoinspectionMosquitoactivityEnumOffline FieldseekerMosquitoinspectionMosquitoactivityEnum = "OFFLINE"
FieldseekerMosquitoinspectionMosquitoactivityEnumLine FieldseekerMosquitoinspectionMosquitoactivityEnum = "LINE"
FieldseekerMosquitoinspectionMosquitoactivityEnumTraplocation FieldseekerMosquitoinspectionMosquitoactivityEnum = "TRAPLOCATION"
FieldseekerMosquitoinspectionMosquitoactivityEnumSamplelocation FieldseekerMosquitoinspectionMosquitoactivityEnum = "SAMPLELOCATION"
FieldseekerMosquitoinspectionMosquitoactivityEnumLclocation FieldseekerMosquitoinspectionMosquitoactivityEnum = "LCLOCATION"
)
func AllFieldseekerMosquitoinspectionMosquitoactivityEnum() []FieldseekerMosquitoinspectionMosquitoactivityEnum {
return []FieldseekerMosquitoinspectionMosquitoactivityEnum{
FieldseekerMosquitoinspectionMosquitoactivityEnumRoutineInspection,
FieldseekerMosquitoinspectionMosquitoactivityEnumPreTreatment,
FieldseekerMosquitoinspectionMosquitoactivityEnumMaintenance,
FieldseekerMosquitoinspectionMosquitoactivityEnumUlv,
FieldseekerMosquitoinspectionMosquitoactivityEnumBarrier,
FieldseekerMosquitoinspectionMosquitoactivityEnumLogin,
FieldseekerMosquitoinspectionMosquitoactivityEnumTreatsd,
FieldseekerMosquitoinspectionMosquitoactivityEnumSD,
FieldseekerMosquitoinspectionMosquitoactivityEnumSitevisit,
FieldseekerMosquitoinspectionMosquitoactivityEnumOnline,
FieldseekerMosquitoinspectionMosquitoactivityEnumSync,
FieldseekerMosquitoinspectionMosquitoactivityEnumCreatesr,
FieldseekerMosquitoinspectionMosquitoactivityEnumLC,
FieldseekerMosquitoinspectionMosquitoactivityEnumAcceptsr,
FieldseekerMosquitoinspectionMosquitoactivityEnumPoint,
FieldseekerMosquitoinspectionMosquitoactivityEnumDownload,
FieldseekerMosquitoinspectionMosquitoactivityEnumCompletesr,
FieldseekerMosquitoinspectionMosquitoactivityEnumPolygon,
FieldseekerMosquitoinspectionMosquitoactivityEnumTrap,
FieldseekerMosquitoinspectionMosquitoactivityEnumSample,
FieldseekerMosquitoinspectionMosquitoactivityEnumQa,
FieldseekerMosquitoinspectionMosquitoactivityEnumPta,
FieldseekerMosquitoinspectionMosquitoactivityEnumFieldscouting,
FieldseekerMosquitoinspectionMosquitoactivityEnumOffline,
FieldseekerMosquitoinspectionMosquitoactivityEnumLine,
FieldseekerMosquitoinspectionMosquitoactivityEnumTraplocation,
FieldseekerMosquitoinspectionMosquitoactivityEnumSamplelocation,
FieldseekerMosquitoinspectionMosquitoactivityEnumLclocation,
}
}
type FieldseekerMosquitoinspectionMosquitoactivityEnum string
func (e FieldseekerMosquitoinspectionMosquitoactivityEnum) String() string {
return string(e)
}
func (e FieldseekerMosquitoinspectionMosquitoactivityEnum) Valid() bool {
switch e {
case FieldseekerMosquitoinspectionMosquitoactivityEnumRoutineInspection,
FieldseekerMosquitoinspectionMosquitoactivityEnumPreTreatment,
FieldseekerMosquitoinspectionMosquitoactivityEnumMaintenance,
FieldseekerMosquitoinspectionMosquitoactivityEnumUlv,
FieldseekerMosquitoinspectionMosquitoactivityEnumBarrier,
FieldseekerMosquitoinspectionMosquitoactivityEnumLogin,
FieldseekerMosquitoinspectionMosquitoactivityEnumTreatsd,
FieldseekerMosquitoinspectionMosquitoactivityEnumSD,
FieldseekerMosquitoinspectionMosquitoactivityEnumSitevisit,
FieldseekerMosquitoinspectionMosquitoactivityEnumOnline,
FieldseekerMosquitoinspectionMosquitoactivityEnumSync,
FieldseekerMosquitoinspectionMosquitoactivityEnumCreatesr,
FieldseekerMosquitoinspectionMosquitoactivityEnumLC,
FieldseekerMosquitoinspectionMosquitoactivityEnumAcceptsr,
FieldseekerMosquitoinspectionMosquitoactivityEnumPoint,
FieldseekerMosquitoinspectionMosquitoactivityEnumDownload,
FieldseekerMosquitoinspectionMosquitoactivityEnumCompletesr,
FieldseekerMosquitoinspectionMosquitoactivityEnumPolygon,
FieldseekerMosquitoinspectionMosquitoactivityEnumTrap,
FieldseekerMosquitoinspectionMosquitoactivityEnumSample,
FieldseekerMosquitoinspectionMosquitoactivityEnumQa,
FieldseekerMosquitoinspectionMosquitoactivityEnumPta,
FieldseekerMosquitoinspectionMosquitoactivityEnumFieldscouting,
FieldseekerMosquitoinspectionMosquitoactivityEnumOffline,
FieldseekerMosquitoinspectionMosquitoactivityEnumLine,
FieldseekerMosquitoinspectionMosquitoactivityEnumTraplocation,
FieldseekerMosquitoinspectionMosquitoactivityEnumSamplelocation,
FieldseekerMosquitoinspectionMosquitoactivityEnumLclocation:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerMosquitoinspectionMosquitoactivityEnum) All() []FieldseekerMosquitoinspectionMosquitoactivityEnum {
return AllFieldseekerMosquitoinspectionMosquitoactivityEnum()
}
func (e FieldseekerMosquitoinspectionMosquitoactivityEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitoactivityEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerMosquitoinspectionMosquitoactivityEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitoactivityEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerMosquitoinspectionMosquitoactivityEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitoactivityEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerMosquitoinspectionMosquitoactivityEnum(x)
case []byte:
*e = FieldseekerMosquitoinspectionMosquitoactivityEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerMosquitoinspectionMosquitoactivityEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerMosquitoinspectionMosquitoactivityEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerMosquitoinspectionMosquitoadultactivityEnum
const (
FieldseekerMosquitoinspectionMosquitoadultactivityEnumNone FieldseekerMosquitoinspectionMosquitoadultactivityEnum = "None"
FieldseekerMosquitoinspectionMosquitoadultactivityEnumLight FieldseekerMosquitoinspectionMosquitoadultactivityEnum = "Light"
FieldseekerMosquitoinspectionMosquitoadultactivityEnumModerate FieldseekerMosquitoinspectionMosquitoadultactivityEnum = "Moderate"
FieldseekerMosquitoinspectionMosquitoadultactivityEnumIntense FieldseekerMosquitoinspectionMosquitoadultactivityEnum = "Intense"
)
func AllFieldseekerMosquitoinspectionMosquitoadultactivityEnum() []FieldseekerMosquitoinspectionMosquitoadultactivityEnum {
return []FieldseekerMosquitoinspectionMosquitoadultactivityEnum{
FieldseekerMosquitoinspectionMosquitoadultactivityEnumNone,
FieldseekerMosquitoinspectionMosquitoadultactivityEnumLight,
FieldseekerMosquitoinspectionMosquitoadultactivityEnumModerate,
FieldseekerMosquitoinspectionMosquitoadultactivityEnumIntense,
}
}
type FieldseekerMosquitoinspectionMosquitoadultactivityEnum string
func (e FieldseekerMosquitoinspectionMosquitoadultactivityEnum) String() string {
return string(e)
}
func (e FieldseekerMosquitoinspectionMosquitoadultactivityEnum) Valid() bool {
switch e {
case FieldseekerMosquitoinspectionMosquitoadultactivityEnumNone,
FieldseekerMosquitoinspectionMosquitoadultactivityEnumLight,
FieldseekerMosquitoinspectionMosquitoadultactivityEnumModerate,
FieldseekerMosquitoinspectionMosquitoadultactivityEnumIntense:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerMosquitoinspectionMosquitoadultactivityEnum) All() []FieldseekerMosquitoinspectionMosquitoadultactivityEnum {
return AllFieldseekerMosquitoinspectionMosquitoadultactivityEnum()
}
func (e FieldseekerMosquitoinspectionMosquitoadultactivityEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitoadultactivityEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerMosquitoinspectionMosquitoadultactivityEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitoadultactivityEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerMosquitoinspectionMosquitoadultactivityEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitoadultactivityEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerMosquitoinspectionMosquitoadultactivityEnum(x)
case []byte:
*e = FieldseekerMosquitoinspectionMosquitoadultactivityEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerMosquitoinspectionMosquitoadultactivityEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerMosquitoinspectionMosquitoadultactivityEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerMosquitoinspectionMosquitobreedingEnum
const (
FieldseekerMosquitoinspectionMosquitobreedingEnumNone FieldseekerMosquitoinspectionMosquitobreedingEnum = "None"
FieldseekerMosquitoinspectionMosquitobreedingEnumLight FieldseekerMosquitoinspectionMosquitobreedingEnum = "Light"
FieldseekerMosquitoinspectionMosquitobreedingEnumModerate FieldseekerMosquitoinspectionMosquitobreedingEnum = "Moderate"
FieldseekerMosquitoinspectionMosquitobreedingEnumIntense FieldseekerMosquitoinspectionMosquitobreedingEnum = "Intense"
)
func AllFieldseekerMosquitoinspectionMosquitobreedingEnum() []FieldseekerMosquitoinspectionMosquitobreedingEnum {
return []FieldseekerMosquitoinspectionMosquitobreedingEnum{
FieldseekerMosquitoinspectionMosquitobreedingEnumNone,
FieldseekerMosquitoinspectionMosquitobreedingEnumLight,
FieldseekerMosquitoinspectionMosquitobreedingEnumModerate,
FieldseekerMosquitoinspectionMosquitobreedingEnumIntense,
}
}
type FieldseekerMosquitoinspectionMosquitobreedingEnum string
func (e FieldseekerMosquitoinspectionMosquitobreedingEnum) String() string {
return string(e)
}
func (e FieldseekerMosquitoinspectionMosquitobreedingEnum) Valid() bool {
switch e {
case FieldseekerMosquitoinspectionMosquitobreedingEnumNone,
FieldseekerMosquitoinspectionMosquitobreedingEnumLight,
FieldseekerMosquitoinspectionMosquitobreedingEnumModerate,
FieldseekerMosquitoinspectionMosquitobreedingEnumIntense:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerMosquitoinspectionMosquitobreedingEnum) All() []FieldseekerMosquitoinspectionMosquitobreedingEnum {
return AllFieldseekerMosquitoinspectionMosquitobreedingEnum()
}
func (e FieldseekerMosquitoinspectionMosquitobreedingEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitobreedingEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerMosquitoinspectionMosquitobreedingEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitobreedingEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerMosquitoinspectionMosquitobreedingEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitobreedingEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerMosquitoinspectionMosquitobreedingEnum(x)
case []byte:
*e = FieldseekerMosquitoinspectionMosquitobreedingEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerMosquitoinspectionMosquitobreedingEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerMosquitoinspectionMosquitobreedingEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerMosquitoinspectionMosquitofieldspeciesEnum
const (
FieldseekerMosquitoinspectionMosquitofieldspeciesEnumAedes FieldseekerMosquitoinspectionMosquitofieldspeciesEnum = "Aedes"
FieldseekerMosquitoinspectionMosquitofieldspeciesEnumCulex FieldseekerMosquitoinspectionMosquitofieldspeciesEnum = "Culex"
)
func AllFieldseekerMosquitoinspectionMosquitofieldspeciesEnum() []FieldseekerMosquitoinspectionMosquitofieldspeciesEnum {
return []FieldseekerMosquitoinspectionMosquitofieldspeciesEnum{
FieldseekerMosquitoinspectionMosquitofieldspeciesEnumAedes,
FieldseekerMosquitoinspectionMosquitofieldspeciesEnumCulex,
}
}
type FieldseekerMosquitoinspectionMosquitofieldspeciesEnum string
func (e FieldseekerMosquitoinspectionMosquitofieldspeciesEnum) String() string {
return string(e)
}
func (e FieldseekerMosquitoinspectionMosquitofieldspeciesEnum) Valid() bool {
switch e {
case FieldseekerMosquitoinspectionMosquitofieldspeciesEnumAedes,
FieldseekerMosquitoinspectionMosquitofieldspeciesEnumCulex:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerMosquitoinspectionMosquitofieldspeciesEnum) All() []FieldseekerMosquitoinspectionMosquitofieldspeciesEnum {
return AllFieldseekerMosquitoinspectionMosquitofieldspeciesEnum()
}
func (e FieldseekerMosquitoinspectionMosquitofieldspeciesEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitofieldspeciesEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerMosquitoinspectionMosquitofieldspeciesEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitofieldspeciesEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerMosquitoinspectionMosquitofieldspeciesEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitofieldspeciesEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerMosquitoinspectionMosquitofieldspeciesEnum(x)
case []byte:
*e = FieldseekerMosquitoinspectionMosquitofieldspeciesEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerMosquitoinspectionMosquitofieldspeciesEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerMosquitoinspectionMosquitofieldspeciesEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4
const (
FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4Treatment FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4 = "Treatment"
FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4MechanicalOrBiologicalTreatment FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4 = "Mechanical or Biological Treatment"
FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4ResidentScheduleRequest FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4 = "Resident Schedule Request"
FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4Administrative FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4 = "Administrative"
)
func AllFieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4() []FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4 {
return []FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4{
FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4Treatment,
FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4MechanicalOrBiologicalTreatment,
FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4ResidentScheduleRequest,
FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4Administrative,
}
}
type FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4 string
func (e FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4) String() string {
return string(e)
}
func (e FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4) Valid() bool {
switch e {
case FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4Treatment,
FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4MechanicalOrBiologicalTreatment,
FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4ResidentScheduleRequest,
FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4Administrative:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4) All() []FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4 {
return AllFieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4()
}
func (e FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4(x)
case []byte:
*e = FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerMosquitoinspectionMosquitoinspectionActiontaken252243D69B0B4 value: %s", *e)
}
return nil
}
// Enum values for FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98B
const (
FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98BYes FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98B = "yes"
FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98BNo FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98B = "no"
)
func AllFieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98B() []FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98B {
return []FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98B{
FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98BYes,
FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98BNo,
}
}
type FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98B string
func (e FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98B) String() string {
return string(e)
}
func (e FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98B) Valid() bool {
switch e {
case FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98BYes,
FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98BNo:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98B) All() []FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98B {
return AllFieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98B()
}
func (e FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98B) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98B) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98B) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98B) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98B) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98B) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98B(x)
case []byte:
*e = FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98B(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98B")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerMosquitoinspectionMosquitoinspectionAdminactionB74ae1bbC98B value: %s", *e)
}
return nil
}
// Enum values for FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2
const (
FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a21 FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2 = "1"
FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a22 FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2 = "2"
FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a23 FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2 = "3"
FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a24 FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2 = "4"
FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a25 FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2 = "5"
FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a21_2 FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2 = "1-2"
FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a22_3 FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2 = "2-3"
FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a23_4 FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2 = "3-4"
)
func AllFieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2() []FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2 {
return []FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2{
FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a21,
FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a22,
FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a23,
FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a24,
FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a25,
FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a21_2,
FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a22_3,
FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a23_4,
}
}
type FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2 string
func (e FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2) String() string {
return string(e)
}
func (e FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2) Valid() bool {
switch e {
case FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a21,
FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a22,
FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a23,
FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a24,
FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a25,
FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a21_2,
FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a22_3,
FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a23_4:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2) All() []FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2 {
return AllFieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2()
}
func (e FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2(x)
case []byte:
*e = FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerMosquitoinspectionMosquitoinspectionDomstageB7a6c36bccde49a2 value: %s", *e)
}
return nil
}
// Enum values for FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540
const (
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540Dry FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540 = "Dry"
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540Flowing FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540 = "Flowing"
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540Maintained FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540 = "Maintained"
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540Unmaintained FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540 = "Unmaintained"
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540HighOrganic FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540 = "High Organic"
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540Unknown FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540 = "Unknown"
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540Stagnant FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540 = "Stagnant"
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540NeedsMonitoring FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540 = "Needs Monitoring"
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540DryingOut FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540 = "Drying Out"
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540AppearsVacant FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540 = "Appears Vacant"
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540EntryDenied FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540 = "Entry Denied"
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540PoolRemoved FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540 = "Pool Removed"
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540FalsePool FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540 = "False Pool"
)
func AllFieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540() []FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540 {
return []FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540{
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540Dry,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540Flowing,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540Maintained,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540Unmaintained,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540HighOrganic,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540Unknown,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540Stagnant,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540NeedsMonitoring,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540DryingOut,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540AppearsVacant,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540EntryDenied,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540PoolRemoved,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540FalsePool,
}
}
type FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540 string
func (e FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540) String() string {
return string(e)
}
func (e FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540) Valid() bool {
switch e {
case FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540Dry,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540Flowing,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540Maintained,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540Unmaintained,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540HighOrganic,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540Unknown,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540Stagnant,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540NeedsMonitoring,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540DryingOut,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540AppearsVacant,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540EntryDenied,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540PoolRemoved,
FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540FalsePool:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540) All() []FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540 {
return AllFieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540()
}
func (e FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540(x)
case []byte:
*e = FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerMosquitoinspectionMosquitoinspectionSitecondDB7350BC81e540 value: %s", *e)
}
return nil
}
// Enum values for FieldseekerMosquitoinspectionNotinuitFEnum
const (
FieldseekerMosquitoinspectionNotinuitFEnum1 FieldseekerMosquitoinspectionNotinuitFEnum = "1"
FieldseekerMosquitoinspectionNotinuitFEnum0 FieldseekerMosquitoinspectionNotinuitFEnum = "0"
)
func AllFieldseekerMosquitoinspectionNotinuitFEnum() []FieldseekerMosquitoinspectionNotinuitFEnum {
return []FieldseekerMosquitoinspectionNotinuitFEnum{
FieldseekerMosquitoinspectionNotinuitFEnum1,
FieldseekerMosquitoinspectionNotinuitFEnum0,
}
}
type FieldseekerMosquitoinspectionNotinuitFEnum string
func (e FieldseekerMosquitoinspectionNotinuitFEnum) String() string {
return string(e)
}
func (e FieldseekerMosquitoinspectionNotinuitFEnum) Valid() bool {
switch e {
case FieldseekerMosquitoinspectionNotinuitFEnum1,
FieldseekerMosquitoinspectionNotinuitFEnum0:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerMosquitoinspectionNotinuitFEnum) All() []FieldseekerMosquitoinspectionNotinuitFEnum {
return AllFieldseekerMosquitoinspectionNotinuitFEnum()
}
func (e FieldseekerMosquitoinspectionNotinuitFEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerMosquitoinspectionNotinuitFEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerMosquitoinspectionNotinuitFEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerMosquitoinspectionNotinuitFEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerMosquitoinspectionNotinuitFEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerMosquitoinspectionNotinuitFEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerMosquitoinspectionNotinuitFEnum(x)
case []byte:
*e = FieldseekerMosquitoinspectionNotinuitFEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerMosquitoinspectionNotinuitFEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerMosquitoinspectionNotinuitFEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerMosquitoinspectionNotinuiwinddirectionEnum
const (
FieldseekerMosquitoinspectionNotinuiwinddirectionEnumN FieldseekerMosquitoinspectionNotinuiwinddirectionEnum = "N"
FieldseekerMosquitoinspectionNotinuiwinddirectionEnumNe FieldseekerMosquitoinspectionNotinuiwinddirectionEnum = "NE"
FieldseekerMosquitoinspectionNotinuiwinddirectionEnumE FieldseekerMosquitoinspectionNotinuiwinddirectionEnum = "E"
FieldseekerMosquitoinspectionNotinuiwinddirectionEnumSe FieldseekerMosquitoinspectionNotinuiwinddirectionEnum = "SE"
FieldseekerMosquitoinspectionNotinuiwinddirectionEnumS FieldseekerMosquitoinspectionNotinuiwinddirectionEnum = "S"
FieldseekerMosquitoinspectionNotinuiwinddirectionEnumSW FieldseekerMosquitoinspectionNotinuiwinddirectionEnum = "SW"
FieldseekerMosquitoinspectionNotinuiwinddirectionEnumW FieldseekerMosquitoinspectionNotinuiwinddirectionEnum = "W"
FieldseekerMosquitoinspectionNotinuiwinddirectionEnumNW FieldseekerMosquitoinspectionNotinuiwinddirectionEnum = "NW"
)
func AllFieldseekerMosquitoinspectionNotinuiwinddirectionEnum() []FieldseekerMosquitoinspectionNotinuiwinddirectionEnum {
return []FieldseekerMosquitoinspectionNotinuiwinddirectionEnum{
FieldseekerMosquitoinspectionNotinuiwinddirectionEnumN,
FieldseekerMosquitoinspectionNotinuiwinddirectionEnumNe,
FieldseekerMosquitoinspectionNotinuiwinddirectionEnumE,
FieldseekerMosquitoinspectionNotinuiwinddirectionEnumSe,
FieldseekerMosquitoinspectionNotinuiwinddirectionEnumS,
FieldseekerMosquitoinspectionNotinuiwinddirectionEnumSW,
FieldseekerMosquitoinspectionNotinuiwinddirectionEnumW,
FieldseekerMosquitoinspectionNotinuiwinddirectionEnumNW,
}
}
type FieldseekerMosquitoinspectionNotinuiwinddirectionEnum string
func (e FieldseekerMosquitoinspectionNotinuiwinddirectionEnum) String() string {
return string(e)
}
func (e FieldseekerMosquitoinspectionNotinuiwinddirectionEnum) Valid() bool {
switch e {
case FieldseekerMosquitoinspectionNotinuiwinddirectionEnumN,
FieldseekerMosquitoinspectionNotinuiwinddirectionEnumNe,
FieldseekerMosquitoinspectionNotinuiwinddirectionEnumE,
FieldseekerMosquitoinspectionNotinuiwinddirectionEnumSe,
FieldseekerMosquitoinspectionNotinuiwinddirectionEnumS,
FieldseekerMosquitoinspectionNotinuiwinddirectionEnumSW,
FieldseekerMosquitoinspectionNotinuiwinddirectionEnumW,
FieldseekerMosquitoinspectionNotinuiwinddirectionEnumNW:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerMosquitoinspectionNotinuiwinddirectionEnum) All() []FieldseekerMosquitoinspectionNotinuiwinddirectionEnum {
return AllFieldseekerMosquitoinspectionNotinuiwinddirectionEnum()
}
func (e FieldseekerMosquitoinspectionNotinuiwinddirectionEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerMosquitoinspectionNotinuiwinddirectionEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerMosquitoinspectionNotinuiwinddirectionEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerMosquitoinspectionNotinuiwinddirectionEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerMosquitoinspectionNotinuiwinddirectionEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerMosquitoinspectionNotinuiwinddirectionEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerMosquitoinspectionNotinuiwinddirectionEnum(x)
case []byte:
*e = FieldseekerMosquitoinspectionNotinuiwinddirectionEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerMosquitoinspectionNotinuiwinddirectionEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerMosquitoinspectionNotinuiwinddirectionEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerPointlocationLocationpriorityEnum
const (
FieldseekerPointlocationLocationpriorityEnumLow FieldseekerPointlocationLocationpriorityEnum = "Low"
FieldseekerPointlocationLocationpriorityEnumMedium FieldseekerPointlocationLocationpriorityEnum = "Medium"
FieldseekerPointlocationLocationpriorityEnumHigh FieldseekerPointlocationLocationpriorityEnum = "High"
FieldseekerPointlocationLocationpriorityEnumNone FieldseekerPointlocationLocationpriorityEnum = "None"
)
func AllFieldseekerPointlocationLocationpriorityEnum() []FieldseekerPointlocationLocationpriorityEnum {
return []FieldseekerPointlocationLocationpriorityEnum{
FieldseekerPointlocationLocationpriorityEnumLow,
FieldseekerPointlocationLocationpriorityEnumMedium,
FieldseekerPointlocationLocationpriorityEnumHigh,
FieldseekerPointlocationLocationpriorityEnumNone,
}
}
type FieldseekerPointlocationLocationpriorityEnum string
func (e FieldseekerPointlocationLocationpriorityEnum) String() string {
return string(e)
}
func (e FieldseekerPointlocationLocationpriorityEnum) Valid() bool {
switch e {
case FieldseekerPointlocationLocationpriorityEnumLow,
FieldseekerPointlocationLocationpriorityEnumMedium,
FieldseekerPointlocationLocationpriorityEnumHigh,
FieldseekerPointlocationLocationpriorityEnumNone:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerPointlocationLocationpriorityEnum) All() []FieldseekerPointlocationLocationpriorityEnum {
return AllFieldseekerPointlocationLocationpriorityEnum()
}
func (e FieldseekerPointlocationLocationpriorityEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPointlocationLocationpriorityEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerPointlocationLocationpriorityEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPointlocationLocationpriorityEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerPointlocationLocationpriorityEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerPointlocationLocationpriorityEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerPointlocationLocationpriorityEnum(x)
case []byte:
*e = FieldseekerPointlocationLocationpriorityEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerPointlocationLocationpriorityEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerPointlocationLocationpriorityEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerPointlocationLocationsymbologyEnum
const (
FieldseekerPointlocationLocationsymbologyEnumAction FieldseekerPointlocationLocationsymbologyEnum = "ACTION"
FieldseekerPointlocationLocationsymbologyEnumInactive FieldseekerPointlocationLocationsymbologyEnum = "INACTIVE"
FieldseekerPointlocationLocationsymbologyEnumNone FieldseekerPointlocationLocationsymbologyEnum = "NONE"
)
func AllFieldseekerPointlocationLocationsymbologyEnum() []FieldseekerPointlocationLocationsymbologyEnum {
return []FieldseekerPointlocationLocationsymbologyEnum{
FieldseekerPointlocationLocationsymbologyEnumAction,
FieldseekerPointlocationLocationsymbologyEnumInactive,
FieldseekerPointlocationLocationsymbologyEnumNone,
}
}
type FieldseekerPointlocationLocationsymbologyEnum string
func (e FieldseekerPointlocationLocationsymbologyEnum) String() string {
return string(e)
}
func (e FieldseekerPointlocationLocationsymbologyEnum) Valid() bool {
switch e {
case FieldseekerPointlocationLocationsymbologyEnumAction,
FieldseekerPointlocationLocationsymbologyEnumInactive,
FieldseekerPointlocationLocationsymbologyEnumNone:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerPointlocationLocationsymbologyEnum) All() []FieldseekerPointlocationLocationsymbologyEnum {
return AllFieldseekerPointlocationLocationsymbologyEnum()
}
func (e FieldseekerPointlocationLocationsymbologyEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPointlocationLocationsymbologyEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerPointlocationLocationsymbologyEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPointlocationLocationsymbologyEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerPointlocationLocationsymbologyEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerPointlocationLocationsymbologyEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerPointlocationLocationsymbologyEnum(x)
case []byte:
*e = FieldseekerPointlocationLocationsymbologyEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerPointlocationLocationsymbologyEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerPointlocationLocationsymbologyEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerPointlocationNotinuitFEnum
const (
FieldseekerPointlocationNotinuitFEnum1 FieldseekerPointlocationNotinuitFEnum = "1"
FieldseekerPointlocationNotinuitFEnum0 FieldseekerPointlocationNotinuitFEnum = "0"
)
func AllFieldseekerPointlocationNotinuitFEnum() []FieldseekerPointlocationNotinuitFEnum {
return []FieldseekerPointlocationNotinuitFEnum{
FieldseekerPointlocationNotinuitFEnum1,
FieldseekerPointlocationNotinuitFEnum0,
}
}
type FieldseekerPointlocationNotinuitFEnum string
func (e FieldseekerPointlocationNotinuitFEnum) String() string {
return string(e)
}
func (e FieldseekerPointlocationNotinuitFEnum) Valid() bool {
switch e {
case FieldseekerPointlocationNotinuitFEnum1,
FieldseekerPointlocationNotinuitFEnum0:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerPointlocationNotinuitFEnum) All() []FieldseekerPointlocationNotinuitFEnum {
return AllFieldseekerPointlocationNotinuitFEnum()
}
func (e FieldseekerPointlocationNotinuitFEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPointlocationNotinuitFEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerPointlocationNotinuitFEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPointlocationNotinuitFEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerPointlocationNotinuitFEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerPointlocationNotinuitFEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerPointlocationNotinuitFEnum(x)
case []byte:
*e = FieldseekerPointlocationNotinuitFEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerPointlocationNotinuitFEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerPointlocationNotinuitFEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B
const (
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BBryanFeguson FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Bryan Feguson"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BRickAlverez FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Rick Alverez"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BAlysiaDavis FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Alysia Davis"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BBryanRuiz FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Bryan Ruiz"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BKoryWilson FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Kory Wilson"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BAdrianSifuentes FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Adrian Sifuentes"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BMarcoMartinez FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Marco Martinez"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BCarlosRodriguez FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Carlos Rodriguez"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BLandonMcgill FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Landon McGill"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BTedMcgill FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Ted McGill"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BMarioSanchez FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Mario Sanchez"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BJorgePerez FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Jorge Perez"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BArturoGarciaTrejo FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Arturo Garcia-Trejo"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BLisaSalgado FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Lisa Salgado"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BLawrenceGuzman FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Lawrence Guzman"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BTriciaSnowden FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Tricia Snowden"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BRyanSpratt FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Ryan Spratt"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BAndreaTroupin FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Andrea Troupin"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BMarkNakata FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Mark Nakata"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BPabloOrtega FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Pablo Ortega"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BBenjaminSperry FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Benjamin Sperry"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BFatimaHidalgo FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Fatima Hidalgo"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BZackeryBarragan FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Zackery Barragan"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BYajairaGodinez FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Yajaira Godinez"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BJakeMaldonado FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Jake Maldonado"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BRafaelRamirez FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Rafael Ramirez"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BCarlosPalacios FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Carlos Palacios"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BAaronFredrick FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Aaron Fredrick"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BJoshMalone FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Josh Malone"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BAlecCaposella FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Alec Caposella"
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BLauraRamos FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B = "Laura Ramos"
)
func AllFieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B() []FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B {
return []FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B{
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BBryanFeguson,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BRickAlverez,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BAlysiaDavis,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BBryanRuiz,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BKoryWilson,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BAdrianSifuentes,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BMarcoMartinez,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BCarlosRodriguez,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BLandonMcgill,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BTedMcgill,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BMarioSanchez,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BJorgePerez,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BArturoGarciaTrejo,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BLisaSalgado,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BLawrenceGuzman,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BTriciaSnowden,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BRyanSpratt,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BAndreaTroupin,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BMarkNakata,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BPabloOrtega,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BBenjaminSperry,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BFatimaHidalgo,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BZackeryBarragan,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BYajairaGodinez,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BJakeMaldonado,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BRafaelRamirez,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BCarlosPalacios,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BAaronFredrick,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BJoshMalone,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BAlecCaposella,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BLauraRamos,
}
}
type FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B string
func (e FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B) String() string {
return string(e)
}
func (e FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B) Valid() bool {
switch e {
case FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BBryanFeguson,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BRickAlverez,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BAlysiaDavis,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BBryanRuiz,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BKoryWilson,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BAdrianSifuentes,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BMarcoMartinez,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BCarlosRodriguez,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BLandonMcgill,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BTedMcgill,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BMarioSanchez,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BJorgePerez,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BArturoGarciaTrejo,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BLisaSalgado,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BLawrenceGuzman,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BTriciaSnowden,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BRyanSpratt,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BAndreaTroupin,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BMarkNakata,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BPabloOrtega,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BBenjaminSperry,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BFatimaHidalgo,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BZackeryBarragan,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BYajairaGodinez,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BJakeMaldonado,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BRafaelRamirez,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BCarlosPalacios,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BAaronFredrick,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BJoshMalone,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BAlecCaposella,
FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85BLauraRamos:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B) All() []FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B {
return AllFieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B()
}
func (e FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B(x)
case []byte:
*e = FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerPointlocationPointlocationAssignedtech9393a1622474429D85B value: %s", *e)
}
return nil
}
// Enum values for FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489
const (
FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489SourceRemoved FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489 = "Source Removed"
FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489PoolMaintained FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489 = "Pool Maintained"
FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489SourceScreened FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489 = "Source Screened"
FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489CropChange FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489 = "Crop Change"
FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489LowOrNoMosquitoActivity FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489 = "Low or No Mosquito Activity"
FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489ConsistentFishPresence FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489 = "Consistent Fish Presence"
)
func AllFieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489() []FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489 {
return []FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489{
FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489SourceRemoved,
FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489PoolMaintained,
FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489SourceScreened,
FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489CropChange,
FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489LowOrNoMosquitoActivity,
FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489ConsistentFishPresence,
}
}
type FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489 string
func (e FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489) String() string {
return string(e)
}
func (e FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489) Valid() bool {
switch e {
case FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489SourceRemoved,
FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489PoolMaintained,
FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489SourceScreened,
FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489CropChange,
FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489LowOrNoMosquitoActivity,
FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489ConsistentFishPresence:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489) All() []FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489 {
return AllFieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489()
}
func (e FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489(x)
case []byte:
*e = FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerPointlocationPointlocationDeactivateReasonDD303085B33C489 value: %s", *e)
}
return nil
}
// Enum values for FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e
const (
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eOrchard FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "orchard"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eRowCrops FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "row_crops"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eVineCrops FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "vine_crops"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eAgGrassesOrGrain FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "ag_grasses_or_grain"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367ePasture FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "pasture"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eIrrigationStandpipe FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "irrigation_standpipe"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eDitch FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "ditch"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367ePond FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "pond"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eSump FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "sump"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eDrain FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "drain"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eDairyLagoon FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "dairy_lagoon"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eWastewaterTreatment FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "wastewater_treatment"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eTrough FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "trough"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eDepression FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "depression"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eGutter FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "gutter"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eRainGutter FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "rain_gutter"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eCulvert FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "culvert"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eUtility FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "utility"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eCatchBasin FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "catch_basin"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eStreamOrCreek FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "stream_or_creek"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eSlough FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "slough"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eRiver FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "river"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eMarshOrWetlands FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "marsh_or_wetlands"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eContainers FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "containers"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eWateringBowl FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "watering_bowl"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367ePlantSaucer FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "plant_saucer"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eYardDrain FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "yard_drain"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367ePlantAxil FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "plant_axil"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eTreehole FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "treehole"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eFountainOrWaterFeature FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "fountain_or_water_feature"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eBirdBath FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "bird_bath"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eMiscWaterAccumulation FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "misc_water_accumulation"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eTarpOrCover FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "tarp_or_cover"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eSwimmingPool FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "swimming_pool"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eAbovegroundPool FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "aboveground_pool"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eKidPool FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "kid_pool"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eHotTub FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "hot_tub"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eAppliance FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "appliance"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eTires FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "tires"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eFloodedStructure FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "flooded_structure"
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eLowPoint FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e = "low_point"
)
func AllFieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e() []FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e {
return []FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e{
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eOrchard,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eRowCrops,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eVineCrops,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eAgGrassesOrGrain,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367ePasture,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eIrrigationStandpipe,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eDitch,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367ePond,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eSump,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eDrain,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eDairyLagoon,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eWastewaterTreatment,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eTrough,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eDepression,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eGutter,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eRainGutter,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eCulvert,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eUtility,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eCatchBasin,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eStreamOrCreek,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eSlough,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eRiver,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eMarshOrWetlands,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eContainers,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eWateringBowl,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367ePlantSaucer,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eYardDrain,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367ePlantAxil,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eTreehole,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eFountainOrWaterFeature,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eBirdBath,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eMiscWaterAccumulation,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eTarpOrCover,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eSwimmingPool,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eAbovegroundPool,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eKidPool,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eHotTub,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eAppliance,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eTires,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eFloodedStructure,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eLowPoint,
}
}
type FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e string
func (e FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e) String() string {
return string(e)
}
func (e FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e) Valid() bool {
switch e {
case FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eOrchard,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eRowCrops,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eVineCrops,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eAgGrassesOrGrain,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367ePasture,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eIrrigationStandpipe,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eDitch,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367ePond,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eSump,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eDrain,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eDairyLagoon,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eWastewaterTreatment,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eTrough,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eDepression,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eGutter,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eRainGutter,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eCulvert,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eUtility,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eCatchBasin,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eStreamOrCreek,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eSlough,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eRiver,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eMarshOrWetlands,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eContainers,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eWateringBowl,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367ePlantSaucer,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eYardDrain,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367ePlantAxil,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eTreehole,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eFountainOrWaterFeature,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eBirdBath,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eMiscWaterAccumulation,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eTarpOrCover,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eSwimmingPool,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eAbovegroundPool,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eKidPool,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eHotTub,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eAppliance,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eTires,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eFloodedStructure,
FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367eLowPoint:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e) All() []FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e {
return AllFieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e()
}
func (e FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e(x)
case []byte:
*e = FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerPointlocationPointlocationHabitatB4d8135a497949C88BB367e value: %s", *e)
}
return nil
}
// Enum values for FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86
const (
FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86Residential FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86 = "residential"
FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86Commercial FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86 = "commercial"
FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86Agricultural FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86 = "agricultural"
FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86Industrial FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86 = "industrial"
FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86MixedUse FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86 = "mixed_use"
FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86PublicDomain FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86 = "public_domain"
FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86Natural FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86 = "natural"
FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86Municipal FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86 = "municipal"
)
func AllFieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86() []FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86 {
return []FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86{
FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86Residential,
FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86Commercial,
FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86Agricultural,
FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86Industrial,
FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86MixedUse,
FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86PublicDomain,
FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86Natural,
FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86Municipal,
}
}
type FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86 string
func (e FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86) String() string {
return string(e)
}
func (e FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86) Valid() bool {
switch e {
case FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86Residential,
FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86Commercial,
FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86Agricultural,
FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86Industrial,
FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86MixedUse,
FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86PublicDomain,
FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86Natural,
FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86Municipal:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86) All() []FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86 {
return AllFieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86()
}
func (e FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86(x)
case []byte:
*e = FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerPointlocationPointlocationUsetype58d62d18ef4f47fc8cb9874df86 value: %s", *e)
}
return nil
}
// Enum values for FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899
const (
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899FloodIrrigation FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899 = "flood_irrigation"
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899FurrowIrrigation FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899 = "furrow_irrigation"
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899DripIrrigation FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899 = "drip_irrigation"
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899SprinklerIrrigation FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899 = "sprinkler_irrigation"
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899WastewaterIrrigation FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899 = "wastewater_irrigation"
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899IrrigationRunoff FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899 = "irrigation_runoff"
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899StormwaterOrMunicipalRunoff FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899 = "stormwater_or_municipal_runoff"
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899IndustrialRunoff FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899 = "industrial_runoff"
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899RainwaterAccumulation FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899 = "rainwater_accumulation"
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899Leak FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899 = "leak"
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899Seepage FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899 = "seepage"
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899StoredWater FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899 = "stored_water"
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899WastewaterSystem FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899 = "wastewater_system"
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899PermanentNaturalWater FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899 = "permanent_natural_water"
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899TemporaryNaturalWater FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899 = "temporary_natural_water"
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899RecreationalOrOrenamentalWater FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899 = "recreational_or_orenamental_water"
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899WaterConveyance FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899 = "water_conveyance"
)
func AllFieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899() []FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899 {
return []FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899{
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899FloodIrrigation,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899FurrowIrrigation,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899DripIrrigation,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899SprinklerIrrigation,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899WastewaterIrrigation,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899IrrigationRunoff,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899StormwaterOrMunicipalRunoff,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899IndustrialRunoff,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899RainwaterAccumulation,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899Leak,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899Seepage,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899StoredWater,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899WastewaterSystem,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899PermanentNaturalWater,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899TemporaryNaturalWater,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899RecreationalOrOrenamentalWater,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899WaterConveyance,
}
}
type FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899 string
func (e FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899) String() string {
return string(e)
}
func (e FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899) Valid() bool {
switch e {
case FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899FloodIrrigation,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899FurrowIrrigation,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899DripIrrigation,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899SprinklerIrrigation,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899WastewaterIrrigation,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899IrrigationRunoff,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899StormwaterOrMunicipalRunoff,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899IndustrialRunoff,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899RainwaterAccumulation,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899Leak,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899Seepage,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899StoredWater,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899WastewaterSystem,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899PermanentNaturalWater,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899TemporaryNaturalWater,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899RecreationalOrOrenamentalWater,
FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899WaterConveyance:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899) All() []FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899 {
return AllFieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899()
}
func (e FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899(x)
case []byte:
*e = FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerPointlocationPointlocationWaterorigin197B22BFF3eb4dad8899 value: %s", *e)
}
return nil
}
// Enum values for FieldseekerPolygonlocationLocationpriorityEnum
const (
FieldseekerPolygonlocationLocationpriorityEnumLow FieldseekerPolygonlocationLocationpriorityEnum = "Low"
FieldseekerPolygonlocationLocationpriorityEnumMedium FieldseekerPolygonlocationLocationpriorityEnum = "Medium"
FieldseekerPolygonlocationLocationpriorityEnumHigh FieldseekerPolygonlocationLocationpriorityEnum = "High"
FieldseekerPolygonlocationLocationpriorityEnumNone FieldseekerPolygonlocationLocationpriorityEnum = "None"
)
func AllFieldseekerPolygonlocationLocationpriorityEnum() []FieldseekerPolygonlocationLocationpriorityEnum {
return []FieldseekerPolygonlocationLocationpriorityEnum{
FieldseekerPolygonlocationLocationpriorityEnumLow,
FieldseekerPolygonlocationLocationpriorityEnumMedium,
FieldseekerPolygonlocationLocationpriorityEnumHigh,
FieldseekerPolygonlocationLocationpriorityEnumNone,
}
}
type FieldseekerPolygonlocationLocationpriorityEnum string
func (e FieldseekerPolygonlocationLocationpriorityEnum) String() string {
return string(e)
}
func (e FieldseekerPolygonlocationLocationpriorityEnum) Valid() bool {
switch e {
case FieldseekerPolygonlocationLocationpriorityEnumLow,
FieldseekerPolygonlocationLocationpriorityEnumMedium,
FieldseekerPolygonlocationLocationpriorityEnumHigh,
FieldseekerPolygonlocationLocationpriorityEnumNone:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerPolygonlocationLocationpriorityEnum) All() []FieldseekerPolygonlocationLocationpriorityEnum {
return AllFieldseekerPolygonlocationLocationpriorityEnum()
}
func (e FieldseekerPolygonlocationLocationpriorityEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPolygonlocationLocationpriorityEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerPolygonlocationLocationpriorityEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPolygonlocationLocationpriorityEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerPolygonlocationLocationpriorityEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerPolygonlocationLocationpriorityEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerPolygonlocationLocationpriorityEnum(x)
case []byte:
*e = FieldseekerPolygonlocationLocationpriorityEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerPolygonlocationLocationpriorityEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerPolygonlocationLocationpriorityEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerPolygonlocationLocationsymbologyEnum
const (
FieldseekerPolygonlocationLocationsymbologyEnumAction FieldseekerPolygonlocationLocationsymbologyEnum = "ACTION"
FieldseekerPolygonlocationLocationsymbologyEnumInactive FieldseekerPolygonlocationLocationsymbologyEnum = "INACTIVE"
FieldseekerPolygonlocationLocationsymbologyEnumNone FieldseekerPolygonlocationLocationsymbologyEnum = "NONE"
)
func AllFieldseekerPolygonlocationLocationsymbologyEnum() []FieldseekerPolygonlocationLocationsymbologyEnum {
return []FieldseekerPolygonlocationLocationsymbologyEnum{
FieldseekerPolygonlocationLocationsymbologyEnumAction,
FieldseekerPolygonlocationLocationsymbologyEnumInactive,
FieldseekerPolygonlocationLocationsymbologyEnumNone,
}
}
type FieldseekerPolygonlocationLocationsymbologyEnum string
func (e FieldseekerPolygonlocationLocationsymbologyEnum) String() string {
return string(e)
}
func (e FieldseekerPolygonlocationLocationsymbologyEnum) Valid() bool {
switch e {
case FieldseekerPolygonlocationLocationsymbologyEnumAction,
FieldseekerPolygonlocationLocationsymbologyEnumInactive,
FieldseekerPolygonlocationLocationsymbologyEnumNone:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerPolygonlocationLocationsymbologyEnum) All() []FieldseekerPolygonlocationLocationsymbologyEnum {
return AllFieldseekerPolygonlocationLocationsymbologyEnum()
}
func (e FieldseekerPolygonlocationLocationsymbologyEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPolygonlocationLocationsymbologyEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerPolygonlocationLocationsymbologyEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPolygonlocationLocationsymbologyEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerPolygonlocationLocationsymbologyEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerPolygonlocationLocationsymbologyEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerPolygonlocationLocationsymbologyEnum(x)
case []byte:
*e = FieldseekerPolygonlocationLocationsymbologyEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerPolygonlocationLocationsymbologyEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerPolygonlocationLocationsymbologyEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerPolygonlocationNotinuitFEnum
const (
FieldseekerPolygonlocationNotinuitFEnum1 FieldseekerPolygonlocationNotinuitFEnum = "1"
FieldseekerPolygonlocationNotinuitFEnum0 FieldseekerPolygonlocationNotinuitFEnum = "0"
)
func AllFieldseekerPolygonlocationNotinuitFEnum() []FieldseekerPolygonlocationNotinuitFEnum {
return []FieldseekerPolygonlocationNotinuitFEnum{
FieldseekerPolygonlocationNotinuitFEnum1,
FieldseekerPolygonlocationNotinuitFEnum0,
}
}
type FieldseekerPolygonlocationNotinuitFEnum string
func (e FieldseekerPolygonlocationNotinuitFEnum) String() string {
return string(e)
}
func (e FieldseekerPolygonlocationNotinuitFEnum) Valid() bool {
switch e {
case FieldseekerPolygonlocationNotinuitFEnum1,
FieldseekerPolygonlocationNotinuitFEnum0:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerPolygonlocationNotinuitFEnum) All() []FieldseekerPolygonlocationNotinuitFEnum {
return AllFieldseekerPolygonlocationNotinuitFEnum()
}
func (e FieldseekerPolygonlocationNotinuitFEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPolygonlocationNotinuitFEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerPolygonlocationNotinuitFEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPolygonlocationNotinuitFEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerPolygonlocationNotinuitFEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerPolygonlocationNotinuitFEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerPolygonlocationNotinuitFEnum(x)
case []byte:
*e = FieldseekerPolygonlocationNotinuitFEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerPolygonlocationNotinuitFEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerPolygonlocationNotinuitFEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65
const (
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Orchard FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "orchard"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65RowCrops FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "row_crops"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65VineCrops FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "vine_crops"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65AgGrassesOrGrain FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "ag_grasses_or_grain"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Pasture FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "pasture"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65IrrigationStandpipe FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "irrigation_standpipe"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Ditch FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "ditch"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65DairyLagoon FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "dairy_lagoon"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65WastewaterTreatment FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "wastewater_treatment"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Trough FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "trough"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Depression FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "depression"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Gutter FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "gutter"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65RainGutter FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "rain_gutter"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Culvert FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "culvert"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Utility FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "utility"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65CatchBasin FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "catch_basin"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65StreamOrCreek FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "stream_or_creek"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Slough FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "slough"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65River FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "river"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65MarshOrWetland FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "marsh_or_wetland"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Containers FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "containers"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65WateringBowl FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "watering_bowl"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65PlantSaucer FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "plant_saucer"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65YardDrain FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "yard_drain"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65PlantAxil FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "plant_axil"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Treehole FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "treehole"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65FountainOrWaterFeature FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "fountain_or_water_feature"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65BirdBath FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "bird_bath"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65MiscWaterAccumulation FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "misc_water_accumulation"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65TarpOrCover FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "tarp_or_cover"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65SwimmingPool FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "swimming_pool"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65AbovegroundPool FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "aboveground_pool"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65KidPool FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "kid_pool"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65HotTub FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "hot_tub"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Appliance FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "appliance"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Tires FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "tires"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65FloodedStructure FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "flooded_structure"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65LowPoint FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "low_point"
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Unknown FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 = "unknown"
)
func AllFieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65() []FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 {
return []FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65{
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Orchard,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65RowCrops,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65VineCrops,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65AgGrassesOrGrain,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Pasture,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65IrrigationStandpipe,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Ditch,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65DairyLagoon,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65WastewaterTreatment,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Trough,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Depression,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Gutter,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65RainGutter,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Culvert,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Utility,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65CatchBasin,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65StreamOrCreek,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Slough,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65River,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65MarshOrWetland,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Containers,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65WateringBowl,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65PlantSaucer,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65YardDrain,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65PlantAxil,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Treehole,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65FountainOrWaterFeature,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65BirdBath,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65MiscWaterAccumulation,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65TarpOrCover,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65SwimmingPool,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65AbovegroundPool,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65KidPool,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65HotTub,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Appliance,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Tires,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65FloodedStructure,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65LowPoint,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Unknown,
}
}
type FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 string
func (e FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65) String() string {
return string(e)
}
func (e FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65) Valid() bool {
switch e {
case FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Orchard,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65RowCrops,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65VineCrops,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65AgGrassesOrGrain,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Pasture,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65IrrigationStandpipe,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Ditch,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65DairyLagoon,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65WastewaterTreatment,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Trough,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Depression,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Gutter,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65RainGutter,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Culvert,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Utility,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65CatchBasin,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65StreamOrCreek,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Slough,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65River,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65MarshOrWetland,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Containers,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65WateringBowl,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65PlantSaucer,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65YardDrain,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65PlantAxil,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Treehole,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65FountainOrWaterFeature,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65BirdBath,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65MiscWaterAccumulation,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65TarpOrCover,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65SwimmingPool,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65AbovegroundPool,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65KidPool,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65HotTub,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Appliance,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Tires,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65FloodedStructure,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65LowPoint,
FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65Unknown:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65) All() []FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 {
return AllFieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65()
}
func (e FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65(x)
case []byte:
*e = FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerPolygonlocationPolygonlocationHabitat45e9dde79ac84d959df8b65 value: %s", *e)
}
return nil
}
// Enum values for FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13
const (
FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13Residential FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13 = "residential"
FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13Commercial FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13 = "commercial"
FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13Industrial FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13 = "industrial"
FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13Agricultural FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13 = "agricultural"
FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13MixedUse FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13 = "mixed_use"
FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13PublicDomain FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13 = "public_domain"
FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13Natural FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13 = "natural"
FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13Municipal FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13 = "municipal"
)
func AllFieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13() []FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13 {
return []FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13{
FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13Residential,
FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13Commercial,
FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13Industrial,
FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13Agricultural,
FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13MixedUse,
FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13PublicDomain,
FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13Natural,
FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13Municipal,
}
}
type FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13 string
func (e FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13) String() string {
return string(e)
}
func (e FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13) Valid() bool {
switch e {
case FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13Residential,
FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13Commercial,
FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13Industrial,
FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13Agricultural,
FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13MixedUse,
FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13PublicDomain,
FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13Natural,
FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13Municipal:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13) All() []FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13 {
return AllFieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13()
}
func (e FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13(x)
case []byte:
*e = FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerPolygonlocationPolygonlocationUsetypeE546154cb9544b9aa8e7b13 value: %s", *e)
}
return nil
}
// Enum values for FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9
const (
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9FloodIrrigation FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9 = "flood_irrigation"
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9FurrowIrrigation FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9 = "furrow_irrigation"
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9DripIrritation FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9 = "drip_irritation"
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9SprinklerIrrigation FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9 = "sprinkler_irrigation"
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9WastewaterIrrigation FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9 = "wastewater_irrigation"
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9IrrigationRunoff FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9 = "irrigation_runoff"
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9RainwaterAccumulation FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9 = "rainwater_accumulation"
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9Leak FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9 = "leak"
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9Seepage FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9 = "seepage"
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9StoredWater FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9 = "stored_water"
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9WastewaterSystem FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9 = "wastewater_system"
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9PermanentNaturalWater FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9 = "permanent_natural_water"
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9TemporaryNaturalWater FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9 = "temporary_natural_water"
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9RecreationalOrOrnamentalWater FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9 = "recreational_or_ornamental_water"
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9WaterConveyance FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9 = "water_conveyance"
)
func AllFieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9() []FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9 {
return []FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9{
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9FloodIrrigation,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9FurrowIrrigation,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9DripIrritation,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9SprinklerIrrigation,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9WastewaterIrrigation,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9IrrigationRunoff,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9RainwaterAccumulation,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9Leak,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9Seepage,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9StoredWater,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9WastewaterSystem,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9PermanentNaturalWater,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9TemporaryNaturalWater,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9RecreationalOrOrnamentalWater,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9WaterConveyance,
}
}
type FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9 string
func (e FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9) String() string {
return string(e)
}
func (e FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9) Valid() bool {
switch e {
case FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9FloodIrrigation,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9FurrowIrrigation,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9DripIrritation,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9SprinklerIrrigation,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9WastewaterIrrigation,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9IrrigationRunoff,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9RainwaterAccumulation,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9Leak,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9Seepage,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9StoredWater,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9WastewaterSystem,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9PermanentNaturalWater,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9TemporaryNaturalWater,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9RecreationalOrOrnamentalWater,
FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9WaterConveyance:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9) All() []FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9 {
return AllFieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9()
}
func (e FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9(x)
case []byte:
*e = FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerPolygonlocationPolygonlocationWateroriginE9018e925F474FF9 value: %s", *e)
}
return nil
}
// Enum values for FieldseekerPoolMosquitolabnameEnum
const (
FieldseekerPoolMosquitolabnameEnumInternalLab FieldseekerPoolMosquitolabnameEnum = "Internal Lab"
FieldseekerPoolMosquitolabnameEnumStateLab FieldseekerPoolMosquitolabnameEnum = "State Lab"
)
func AllFieldseekerPoolMosquitolabnameEnum() []FieldseekerPoolMosquitolabnameEnum {
return []FieldseekerPoolMosquitolabnameEnum{
FieldseekerPoolMosquitolabnameEnumInternalLab,
FieldseekerPoolMosquitolabnameEnumStateLab,
}
}
type FieldseekerPoolMosquitolabnameEnum string
func (e FieldseekerPoolMosquitolabnameEnum) String() string {
return string(e)
}
func (e FieldseekerPoolMosquitolabnameEnum) Valid() bool {
switch e {
case FieldseekerPoolMosquitolabnameEnumInternalLab,
FieldseekerPoolMosquitolabnameEnumStateLab:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerPoolMosquitolabnameEnum) All() []FieldseekerPoolMosquitolabnameEnum {
return AllFieldseekerPoolMosquitolabnameEnum()
}
func (e FieldseekerPoolMosquitolabnameEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPoolMosquitolabnameEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerPoolMosquitolabnameEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPoolMosquitolabnameEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerPoolMosquitolabnameEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerPoolMosquitolabnameEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerPoolMosquitolabnameEnum(x)
case []byte:
*e = FieldseekerPoolMosquitolabnameEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerPoolMosquitolabnameEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerPoolMosquitolabnameEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerPoolNotinuitFEnum
const (
FieldseekerPoolNotinuitFEnum1 FieldseekerPoolNotinuitFEnum = "1"
FieldseekerPoolNotinuitFEnum0 FieldseekerPoolNotinuitFEnum = "0"
)
func AllFieldseekerPoolNotinuitFEnum() []FieldseekerPoolNotinuitFEnum {
return []FieldseekerPoolNotinuitFEnum{
FieldseekerPoolNotinuitFEnum1,
FieldseekerPoolNotinuitFEnum0,
}
}
type FieldseekerPoolNotinuitFEnum string
func (e FieldseekerPoolNotinuitFEnum) String() string {
return string(e)
}
func (e FieldseekerPoolNotinuitFEnum) Valid() bool {
switch e {
case FieldseekerPoolNotinuitFEnum1,
FieldseekerPoolNotinuitFEnum0:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerPoolNotinuitFEnum) All() []FieldseekerPoolNotinuitFEnum {
return AllFieldseekerPoolNotinuitFEnum()
}
func (e FieldseekerPoolNotinuitFEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPoolNotinuitFEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerPoolNotinuitFEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPoolNotinuitFEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerPoolNotinuitFEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerPoolNotinuitFEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerPoolNotinuitFEnum(x)
case []byte:
*e = FieldseekerPoolNotinuitFEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerPoolNotinuitFEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerPoolNotinuitFEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum
const (
FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnumWNV FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum = "WNV"
FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnumSlev FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum = "SLEV"
FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnumWeev FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum = "WEEV"
FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnumDenv FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum = "DENV"
FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnumZikv FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum = "ZIKV"
FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnumChikv FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum = "CHIKV"
FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnumWnvU2fslev FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum = "WNV/SLEV"
)
func AllFieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum() []FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum {
return []FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum{
FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnumWNV,
FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnumSlev,
FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnumWeev,
FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnumDenv,
FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnumZikv,
FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnumChikv,
FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnumWnvU2fslev,
}
}
type FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum string
func (e FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum) String() string {
return string(e)
}
func (e FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum) Valid() bool {
switch e {
case FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnumWNV,
FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnumSlev,
FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnumWeev,
FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnumDenv,
FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnumZikv,
FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnumChikv,
FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnumWnvU2fslev:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum) All() []FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum {
return AllFieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum()
}
func (e FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum(x)
case []byte:
*e = FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerPoolPoolDiseasepos6889f8dd00074874aa726907e78497faEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum
const (
FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97EnumWNV FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum = "WNV"
FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97EnumSlev FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum = "SLEV"
FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97EnumWeev FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum = "WEEV"
FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97EnumDenv FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum = "DENV"
FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97EnumZikv FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum = "ZIKV"
FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97EnumChikv FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum = "CHIKV"
)
func AllFieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum() []FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum {
return []FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum{
FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97EnumWNV,
FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97EnumSlev,
FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97EnumWeev,
FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97EnumDenv,
FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97EnumZikv,
FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97EnumChikv,
}
}
type FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum string
func (e FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum) String() string {
return string(e)
}
func (e FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum) Valid() bool {
switch e {
case FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97EnumWNV,
FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97EnumSlev,
FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97EnumWeev,
FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97EnumDenv,
FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97EnumZikv,
FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97EnumChikv:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum) All() []FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum {
return AllFieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum()
}
func (e FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum(x)
case []byte:
*e = FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerPoolPoolDiseasetested0f02232949c04c7e8de820b9b515ed97Enum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnum
const (
FieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnumRTPCR FieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnum = "RT-PCR"
)
func AllFieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnum() []FieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnum {
return []FieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnum{
FieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnumRTPCR,
}
}
type FieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnum string
func (e FieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnum) String() string {
return string(e)
}
func (e FieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnum) Valid() bool {
switch e {
case FieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnumRTPCR:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnum) All() []FieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnum {
return AllFieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnum()
}
func (e FieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnum(x)
case []byte:
*e = FieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerPoolPoolTestmethod670efbfba86d41ba8e2d3cab5d749e7fEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerProposedtreatmentareaLocationpriorityEnum
const (
FieldseekerProposedtreatmentareaLocationpriorityEnumLow FieldseekerProposedtreatmentareaLocationpriorityEnum = "Low"
FieldseekerProposedtreatmentareaLocationpriorityEnumMedium FieldseekerProposedtreatmentareaLocationpriorityEnum = "Medium"
FieldseekerProposedtreatmentareaLocationpriorityEnumHigh FieldseekerProposedtreatmentareaLocationpriorityEnum = "High"
FieldseekerProposedtreatmentareaLocationpriorityEnumNone FieldseekerProposedtreatmentareaLocationpriorityEnum = "None"
)
func AllFieldseekerProposedtreatmentareaLocationpriorityEnum() []FieldseekerProposedtreatmentareaLocationpriorityEnum {
return []FieldseekerProposedtreatmentareaLocationpriorityEnum{
FieldseekerProposedtreatmentareaLocationpriorityEnumLow,
FieldseekerProposedtreatmentareaLocationpriorityEnumMedium,
FieldseekerProposedtreatmentareaLocationpriorityEnumHigh,
FieldseekerProposedtreatmentareaLocationpriorityEnumNone,
}
}
type FieldseekerProposedtreatmentareaLocationpriorityEnum string
func (e FieldseekerProposedtreatmentareaLocationpriorityEnum) String() string {
return string(e)
}
func (e FieldseekerProposedtreatmentareaLocationpriorityEnum) Valid() bool {
switch e {
case FieldseekerProposedtreatmentareaLocationpriorityEnumLow,
FieldseekerProposedtreatmentareaLocationpriorityEnumMedium,
FieldseekerProposedtreatmentareaLocationpriorityEnumHigh,
FieldseekerProposedtreatmentareaLocationpriorityEnumNone:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerProposedtreatmentareaLocationpriorityEnum) All() []FieldseekerProposedtreatmentareaLocationpriorityEnum {
return AllFieldseekerProposedtreatmentareaLocationpriorityEnum()
}
func (e FieldseekerProposedtreatmentareaLocationpriorityEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerProposedtreatmentareaLocationpriorityEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerProposedtreatmentareaLocationpriorityEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerProposedtreatmentareaLocationpriorityEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerProposedtreatmentareaLocationpriorityEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerProposedtreatmentareaLocationpriorityEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerProposedtreatmentareaLocationpriorityEnum(x)
case []byte:
*e = FieldseekerProposedtreatmentareaLocationpriorityEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerProposedtreatmentareaLocationpriorityEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerProposedtreatmentareaLocationpriorityEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum
const (
FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumArgo FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum = "Argo"
FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumAtv FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum = "ATV"
FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumBackpack FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum = "Backpack"
FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumDrone FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum = "Drone"
FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumManual FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum = "Manual"
FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumTruck FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum = "Truck"
FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumUlv FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum = "ULV"
FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumEnhancedSurveillance FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum = "Enhanced_Surveillance"
)
func AllFieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum() []FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum {
return []FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum{
FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumArgo,
FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumAtv,
FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumBackpack,
FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumDrone,
FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumManual,
FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumTruck,
FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumUlv,
FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumEnhancedSurveillance,
}
}
type FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum string
func (e FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum) String() string {
return string(e)
}
func (e FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum) Valid() bool {
switch e {
case FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumArgo,
FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumAtv,
FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumBackpack,
FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumDrone,
FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumManual,
FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumTruck,
FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumUlv,
FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnumEnhancedSurveillance:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum) All() []FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum {
return AllFieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum()
}
func (e FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum(x)
case []byte:
*e = FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerProposedtreatmentareaMosquitotreatmentmethodEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerProposedtreatmentareaNotinuitFEnum
const (
FieldseekerProposedtreatmentareaNotinuitFEnum1 FieldseekerProposedtreatmentareaNotinuitFEnum = "1"
FieldseekerProposedtreatmentareaNotinuitFEnum0 FieldseekerProposedtreatmentareaNotinuitFEnum = "0"
)
func AllFieldseekerProposedtreatmentareaNotinuitFEnum() []FieldseekerProposedtreatmentareaNotinuitFEnum {
return []FieldseekerProposedtreatmentareaNotinuitFEnum{
FieldseekerProposedtreatmentareaNotinuitFEnum1,
FieldseekerProposedtreatmentareaNotinuitFEnum0,
}
}
type FieldseekerProposedtreatmentareaNotinuitFEnum string
func (e FieldseekerProposedtreatmentareaNotinuitFEnum) String() string {
return string(e)
}
func (e FieldseekerProposedtreatmentareaNotinuitFEnum) Valid() bool {
switch e {
case FieldseekerProposedtreatmentareaNotinuitFEnum1,
FieldseekerProposedtreatmentareaNotinuitFEnum0:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerProposedtreatmentareaNotinuitFEnum) All() []FieldseekerProposedtreatmentareaNotinuitFEnum {
return AllFieldseekerProposedtreatmentareaNotinuitFEnum()
}
func (e FieldseekerProposedtreatmentareaNotinuitFEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerProposedtreatmentareaNotinuitFEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerProposedtreatmentareaNotinuitFEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerProposedtreatmentareaNotinuitFEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerProposedtreatmentareaNotinuitFEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerProposedtreatmentareaNotinuitFEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerProposedtreatmentareaNotinuitFEnum(x)
case []byte:
*e = FieldseekerProposedtreatmentareaNotinuitFEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerProposedtreatmentareaNotinuitFEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerProposedtreatmentareaNotinuitFEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerQamosquitoinspectionMosquitoactionEnum
const (
FieldseekerQamosquitoinspectionMosquitoactionEnumTreatment FieldseekerQamosquitoinspectionMosquitoactionEnum = "Treatment"
FieldseekerQamosquitoinspectionMosquitoactionEnumCoveredContainer FieldseekerQamosquitoinspectionMosquitoactionEnum = "Covered container"
FieldseekerQamosquitoinspectionMosquitoactionEnumClearedDebris FieldseekerQamosquitoinspectionMosquitoactionEnum = "Cleared debris"
FieldseekerQamosquitoinspectionMosquitoactionEnumMaintenance FieldseekerQamosquitoinspectionMosquitoactionEnum = "Maintenance"
)
func AllFieldseekerQamosquitoinspectionMosquitoactionEnum() []FieldseekerQamosquitoinspectionMosquitoactionEnum {
return []FieldseekerQamosquitoinspectionMosquitoactionEnum{
FieldseekerQamosquitoinspectionMosquitoactionEnumTreatment,
FieldseekerQamosquitoinspectionMosquitoactionEnumCoveredContainer,
FieldseekerQamosquitoinspectionMosquitoactionEnumClearedDebris,
FieldseekerQamosquitoinspectionMosquitoactionEnumMaintenance,
}
}
type FieldseekerQamosquitoinspectionMosquitoactionEnum string
func (e FieldseekerQamosquitoinspectionMosquitoactionEnum) String() string {
return string(e)
}
func (e FieldseekerQamosquitoinspectionMosquitoactionEnum) Valid() bool {
switch e {
case FieldseekerQamosquitoinspectionMosquitoactionEnumTreatment,
FieldseekerQamosquitoinspectionMosquitoactionEnumCoveredContainer,
FieldseekerQamosquitoinspectionMosquitoactionEnumClearedDebris,
FieldseekerQamosquitoinspectionMosquitoactionEnumMaintenance:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerQamosquitoinspectionMosquitoactionEnum) All() []FieldseekerQamosquitoinspectionMosquitoactionEnum {
return AllFieldseekerQamosquitoinspectionMosquitoactionEnum()
}
func (e FieldseekerQamosquitoinspectionMosquitoactionEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionMosquitoactionEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerQamosquitoinspectionMosquitoactionEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionMosquitoactionEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerQamosquitoinspectionMosquitoactionEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerQamosquitoinspectionMosquitoactionEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerQamosquitoinspectionMosquitoactionEnum(x)
case []byte:
*e = FieldseekerQamosquitoinspectionMosquitoactionEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerQamosquitoinspectionMosquitoactionEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerQamosquitoinspectionMosquitoactionEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerQamosquitoinspectionNotinuitFEnum
const (
FieldseekerQamosquitoinspectionNotinuitFEnum1 FieldseekerQamosquitoinspectionNotinuitFEnum = "1"
FieldseekerQamosquitoinspectionNotinuitFEnum0 FieldseekerQamosquitoinspectionNotinuitFEnum = "0"
)
func AllFieldseekerQamosquitoinspectionNotinuitFEnum() []FieldseekerQamosquitoinspectionNotinuitFEnum {
return []FieldseekerQamosquitoinspectionNotinuitFEnum{
FieldseekerQamosquitoinspectionNotinuitFEnum1,
FieldseekerQamosquitoinspectionNotinuitFEnum0,
}
}
type FieldseekerQamosquitoinspectionNotinuitFEnum string
func (e FieldseekerQamosquitoinspectionNotinuitFEnum) String() string {
return string(e)
}
func (e FieldseekerQamosquitoinspectionNotinuitFEnum) Valid() bool {
switch e {
case FieldseekerQamosquitoinspectionNotinuitFEnum1,
FieldseekerQamosquitoinspectionNotinuitFEnum0:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerQamosquitoinspectionNotinuitFEnum) All() []FieldseekerQamosquitoinspectionNotinuitFEnum {
return AllFieldseekerQamosquitoinspectionNotinuitFEnum()
}
func (e FieldseekerQamosquitoinspectionNotinuitFEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionNotinuitFEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerQamosquitoinspectionNotinuitFEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionNotinuitFEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerQamosquitoinspectionNotinuitFEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerQamosquitoinspectionNotinuitFEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerQamosquitoinspectionNotinuitFEnum(x)
case []byte:
*e = FieldseekerQamosquitoinspectionNotinuitFEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerQamosquitoinspectionNotinuitFEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerQamosquitoinspectionNotinuitFEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerQamosquitoinspectionQaaquaticorganismsEnum
const (
FieldseekerQamosquitoinspectionQaaquaticorganismsEnumFish FieldseekerQamosquitoinspectionQaaquaticorganismsEnum = "fish"
FieldseekerQamosquitoinspectionQaaquaticorganismsEnumScuds FieldseekerQamosquitoinspectionQaaquaticorganismsEnum = "scuds"
FieldseekerQamosquitoinspectionQaaquaticorganismsEnumSnails FieldseekerQamosquitoinspectionQaaquaticorganismsEnum = "snails"
)
func AllFieldseekerQamosquitoinspectionQaaquaticorganismsEnum() []FieldseekerQamosquitoinspectionQaaquaticorganismsEnum {
return []FieldseekerQamosquitoinspectionQaaquaticorganismsEnum{
FieldseekerQamosquitoinspectionQaaquaticorganismsEnumFish,
FieldseekerQamosquitoinspectionQaaquaticorganismsEnumScuds,
FieldseekerQamosquitoinspectionQaaquaticorganismsEnumSnails,
}
}
type FieldseekerQamosquitoinspectionQaaquaticorganismsEnum string
func (e FieldseekerQamosquitoinspectionQaaquaticorganismsEnum) String() string {
return string(e)
}
func (e FieldseekerQamosquitoinspectionQaaquaticorganismsEnum) Valid() bool {
switch e {
case FieldseekerQamosquitoinspectionQaaquaticorganismsEnumFish,
FieldseekerQamosquitoinspectionQaaquaticorganismsEnumScuds,
FieldseekerQamosquitoinspectionQaaquaticorganismsEnumSnails:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerQamosquitoinspectionQaaquaticorganismsEnum) All() []FieldseekerQamosquitoinspectionQaaquaticorganismsEnum {
return AllFieldseekerQamosquitoinspectionQaaquaticorganismsEnum()
}
func (e FieldseekerQamosquitoinspectionQaaquaticorganismsEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQaaquaticorganismsEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerQamosquitoinspectionQaaquaticorganismsEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQaaquaticorganismsEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerQamosquitoinspectionQaaquaticorganismsEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerQamosquitoinspectionQaaquaticorganismsEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerQamosquitoinspectionQaaquaticorganismsEnum(x)
case []byte:
*e = FieldseekerQamosquitoinspectionQaaquaticorganismsEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerQamosquitoinspectionQaaquaticorganismsEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerQamosquitoinspectionQaaquaticorganismsEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerQamosquitoinspectionQabreedingpotentialEnum
const (
FieldseekerQamosquitoinspectionQabreedingpotentialEnumHigh FieldseekerQamosquitoinspectionQabreedingpotentialEnum = "High"
FieldseekerQamosquitoinspectionQabreedingpotentialEnumLow FieldseekerQamosquitoinspectionQabreedingpotentialEnum = "Low"
FieldseekerQamosquitoinspectionQabreedingpotentialEnumMedium FieldseekerQamosquitoinspectionQabreedingpotentialEnum = "Medium"
FieldseekerQamosquitoinspectionQabreedingpotentialEnumRare FieldseekerQamosquitoinspectionQabreedingpotentialEnum = "Rare"
)
func AllFieldseekerQamosquitoinspectionQabreedingpotentialEnum() []FieldseekerQamosquitoinspectionQabreedingpotentialEnum {
return []FieldseekerQamosquitoinspectionQabreedingpotentialEnum{
FieldseekerQamosquitoinspectionQabreedingpotentialEnumHigh,
FieldseekerQamosquitoinspectionQabreedingpotentialEnumLow,
FieldseekerQamosquitoinspectionQabreedingpotentialEnumMedium,
FieldseekerQamosquitoinspectionQabreedingpotentialEnumRare,
}
}
type FieldseekerQamosquitoinspectionQabreedingpotentialEnum string
func (e FieldseekerQamosquitoinspectionQabreedingpotentialEnum) String() string {
return string(e)
}
func (e FieldseekerQamosquitoinspectionQabreedingpotentialEnum) Valid() bool {
switch e {
case FieldseekerQamosquitoinspectionQabreedingpotentialEnumHigh,
FieldseekerQamosquitoinspectionQabreedingpotentialEnumLow,
FieldseekerQamosquitoinspectionQabreedingpotentialEnumMedium,
FieldseekerQamosquitoinspectionQabreedingpotentialEnumRare:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerQamosquitoinspectionQabreedingpotentialEnum) All() []FieldseekerQamosquitoinspectionQabreedingpotentialEnum {
return AllFieldseekerQamosquitoinspectionQabreedingpotentialEnum()
}
func (e FieldseekerQamosquitoinspectionQabreedingpotentialEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQabreedingpotentialEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerQamosquitoinspectionQabreedingpotentialEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQabreedingpotentialEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerQamosquitoinspectionQabreedingpotentialEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerQamosquitoinspectionQabreedingpotentialEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerQamosquitoinspectionQabreedingpotentialEnum(x)
case []byte:
*e = FieldseekerQamosquitoinspectionQabreedingpotentialEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerQamosquitoinspectionQabreedingpotentialEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerQamosquitoinspectionQabreedingpotentialEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerQamosquitoinspectionQalarvaereasonEnum
const (
FieldseekerQamosquitoinspectionQalarvaereasonEnumMissedArea FieldseekerQamosquitoinspectionQalarvaereasonEnum = "Missed Area"
FieldseekerQamosquitoinspectionQalarvaereasonEnumNewSite FieldseekerQamosquitoinspectionQalarvaereasonEnum = "New Site"
FieldseekerQamosquitoinspectionQalarvaereasonEnumNotVisited FieldseekerQamosquitoinspectionQalarvaereasonEnum = "Not Visited"
FieldseekerQamosquitoinspectionQalarvaereasonEnumRateLow FieldseekerQamosquitoinspectionQalarvaereasonEnum = "Rate Low"
FieldseekerQamosquitoinspectionQalarvaereasonEnumTreatedRecently FieldseekerQamosquitoinspectionQalarvaereasonEnum = "Treated Recently"
FieldseekerQamosquitoinspectionQalarvaereasonEnumUnknown FieldseekerQamosquitoinspectionQalarvaereasonEnum = "Unknown"
FieldseekerQamosquitoinspectionQalarvaereasonEnumWrongProduct FieldseekerQamosquitoinspectionQalarvaereasonEnum = "Wrong Product"
)
func AllFieldseekerQamosquitoinspectionQalarvaereasonEnum() []FieldseekerQamosquitoinspectionQalarvaereasonEnum {
return []FieldseekerQamosquitoinspectionQalarvaereasonEnum{
FieldseekerQamosquitoinspectionQalarvaereasonEnumMissedArea,
FieldseekerQamosquitoinspectionQalarvaereasonEnumNewSite,
FieldseekerQamosquitoinspectionQalarvaereasonEnumNotVisited,
FieldseekerQamosquitoinspectionQalarvaereasonEnumRateLow,
FieldseekerQamosquitoinspectionQalarvaereasonEnumTreatedRecently,
FieldseekerQamosquitoinspectionQalarvaereasonEnumUnknown,
FieldseekerQamosquitoinspectionQalarvaereasonEnumWrongProduct,
}
}
type FieldseekerQamosquitoinspectionQalarvaereasonEnum string
func (e FieldseekerQamosquitoinspectionQalarvaereasonEnum) String() string {
return string(e)
}
func (e FieldseekerQamosquitoinspectionQalarvaereasonEnum) Valid() bool {
switch e {
case FieldseekerQamosquitoinspectionQalarvaereasonEnumMissedArea,
FieldseekerQamosquitoinspectionQalarvaereasonEnumNewSite,
FieldseekerQamosquitoinspectionQalarvaereasonEnumNotVisited,
FieldseekerQamosquitoinspectionQalarvaereasonEnumRateLow,
FieldseekerQamosquitoinspectionQalarvaereasonEnumTreatedRecently,
FieldseekerQamosquitoinspectionQalarvaereasonEnumUnknown,
FieldseekerQamosquitoinspectionQalarvaereasonEnumWrongProduct:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerQamosquitoinspectionQalarvaereasonEnum) All() []FieldseekerQamosquitoinspectionQalarvaereasonEnum {
return AllFieldseekerQamosquitoinspectionQalarvaereasonEnum()
}
func (e FieldseekerQamosquitoinspectionQalarvaereasonEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQalarvaereasonEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerQamosquitoinspectionQalarvaereasonEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQalarvaereasonEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerQamosquitoinspectionQalarvaereasonEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerQamosquitoinspectionQalarvaereasonEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerQamosquitoinspectionQalarvaereasonEnum(x)
case []byte:
*e = FieldseekerQamosquitoinspectionQalarvaereasonEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerQamosquitoinspectionQalarvaereasonEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerQamosquitoinspectionQalarvaereasonEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerQamosquitoinspectionQamosquitohabitatEnum
const (
FieldseekerQamosquitoinspectionQamosquitohabitatEnumDepressions FieldseekerQamosquitoinspectionQamosquitohabitatEnum = "Depressions"
FieldseekerQamosquitoinspectionQamosquitohabitatEnumDetritusPresent FieldseekerQamosquitoinspectionQamosquitohabitatEnum = "Detritus present"
FieldseekerQamosquitoinspectionQamosquitohabitatEnumFast FieldseekerQamosquitoinspectionQamosquitohabitatEnum = "Fast"
FieldseekerQamosquitoinspectionQamosquitohabitatEnumFewPredators FieldseekerQamosquitoinspectionQamosquitohabitatEnum = "Few predators"
FieldseekerQamosquitoinspectionQamosquitohabitatEnumFluctuatingLevels FieldseekerQamosquitoinspectionQamosquitohabitatEnum = "Fluctuating levels"
FieldseekerQamosquitoinspectionQamosquitohabitatEnumH20U3C6U22 FieldseekerQamosquitoinspectionQamosquitohabitatEnum = "H20<6\""
FieldseekerQamosquitoinspectionQamosquitohabitatEnumLowWavePotential FieldseekerQamosquitoinspectionQamosquitohabitatEnum = "Low wave potential"
FieldseekerQamosquitoinspectionQamosquitohabitatEnumNoFish FieldseekerQamosquitoinspectionQamosquitohabitatEnum = "No fish"
FieldseekerQamosquitoinspectionQamosquitohabitatEnumShallowEdges FieldseekerQamosquitoinspectionQamosquitohabitatEnum = "Shallow edges"
FieldseekerQamosquitoinspectionQamosquitohabitatEnumStillWaterEdges FieldseekerQamosquitoinspectionQamosquitohabitatEnum = "Still water edges"
FieldseekerQamosquitoinspectionQamosquitohabitatEnumStillWaterWhole FieldseekerQamosquitoinspectionQamosquitohabitatEnum = "Still water whole"
FieldseekerQamosquitoinspectionQamosquitohabitatEnumVegU2eOnEdges FieldseekerQamosquitoinspectionQamosquitohabitatEnum = "Veg. on edges"
)
func AllFieldseekerQamosquitoinspectionQamosquitohabitatEnum() []FieldseekerQamosquitoinspectionQamosquitohabitatEnum {
return []FieldseekerQamosquitoinspectionQamosquitohabitatEnum{
FieldseekerQamosquitoinspectionQamosquitohabitatEnumDepressions,
FieldseekerQamosquitoinspectionQamosquitohabitatEnumDetritusPresent,
FieldseekerQamosquitoinspectionQamosquitohabitatEnumFast,
FieldseekerQamosquitoinspectionQamosquitohabitatEnumFewPredators,
FieldseekerQamosquitoinspectionQamosquitohabitatEnumFluctuatingLevels,
FieldseekerQamosquitoinspectionQamosquitohabitatEnumH20U3C6U22,
FieldseekerQamosquitoinspectionQamosquitohabitatEnumLowWavePotential,
FieldseekerQamosquitoinspectionQamosquitohabitatEnumNoFish,
FieldseekerQamosquitoinspectionQamosquitohabitatEnumShallowEdges,
FieldseekerQamosquitoinspectionQamosquitohabitatEnumStillWaterEdges,
FieldseekerQamosquitoinspectionQamosquitohabitatEnumStillWaterWhole,
FieldseekerQamosquitoinspectionQamosquitohabitatEnumVegU2eOnEdges,
}
}
type FieldseekerQamosquitoinspectionQamosquitohabitatEnum string
func (e FieldseekerQamosquitoinspectionQamosquitohabitatEnum) String() string {
return string(e)
}
func (e FieldseekerQamosquitoinspectionQamosquitohabitatEnum) Valid() bool {
switch e {
case FieldseekerQamosquitoinspectionQamosquitohabitatEnumDepressions,
FieldseekerQamosquitoinspectionQamosquitohabitatEnumDetritusPresent,
FieldseekerQamosquitoinspectionQamosquitohabitatEnumFast,
FieldseekerQamosquitoinspectionQamosquitohabitatEnumFewPredators,
FieldseekerQamosquitoinspectionQamosquitohabitatEnumFluctuatingLevels,
FieldseekerQamosquitoinspectionQamosquitohabitatEnumH20U3C6U22,
FieldseekerQamosquitoinspectionQamosquitohabitatEnumLowWavePotential,
FieldseekerQamosquitoinspectionQamosquitohabitatEnumNoFish,
FieldseekerQamosquitoinspectionQamosquitohabitatEnumShallowEdges,
FieldseekerQamosquitoinspectionQamosquitohabitatEnumStillWaterEdges,
FieldseekerQamosquitoinspectionQamosquitohabitatEnumStillWaterWhole,
FieldseekerQamosquitoinspectionQamosquitohabitatEnumVegU2eOnEdges:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerQamosquitoinspectionQamosquitohabitatEnum) All() []FieldseekerQamosquitoinspectionQamosquitohabitatEnum {
return AllFieldseekerQamosquitoinspectionQamosquitohabitatEnum()
}
func (e FieldseekerQamosquitoinspectionQamosquitohabitatEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQamosquitohabitatEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerQamosquitoinspectionQamosquitohabitatEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQamosquitohabitatEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerQamosquitoinspectionQamosquitohabitatEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerQamosquitoinspectionQamosquitohabitatEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerQamosquitoinspectionQamosquitohabitatEnum(x)
case []byte:
*e = FieldseekerQamosquitoinspectionQamosquitohabitatEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerQamosquitoinspectionQamosquitohabitatEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerQamosquitoinspectionQamosquitohabitatEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerQamosquitoinspectionQasitetypeEnum
const (
FieldseekerQamosquitoinspectionQasitetypeEnumDetentionPond FieldseekerQamosquitoinspectionQasitetypeEnum = "Detention Pond"
FieldseekerQamosquitoinspectionQasitetypeEnumDitch FieldseekerQamosquitoinspectionQasitetypeEnum = "Ditch"
FieldseekerQamosquitoinspectionQasitetypeEnumLowArea FieldseekerQamosquitoinspectionQasitetypeEnum = "Low Area"
FieldseekerQamosquitoinspectionQasitetypeEnumMangroveEdge FieldseekerQamosquitoinspectionQasitetypeEnum = "Mangrove Edge"
FieldseekerQamosquitoinspectionQasitetypeEnumPond FieldseekerQamosquitoinspectionQasitetypeEnum = "Pond"
FieldseekerQamosquitoinspectionQasitetypeEnumPondEdge FieldseekerQamosquitoinspectionQasitetypeEnum = "Pond Edge"
FieldseekerQamosquitoinspectionQasitetypeEnumSwale FieldseekerQamosquitoinspectionQasitetypeEnum = "Swale"
)
func AllFieldseekerQamosquitoinspectionQasitetypeEnum() []FieldseekerQamosquitoinspectionQasitetypeEnum {
return []FieldseekerQamosquitoinspectionQasitetypeEnum{
FieldseekerQamosquitoinspectionQasitetypeEnumDetentionPond,
FieldseekerQamosquitoinspectionQasitetypeEnumDitch,
FieldseekerQamosquitoinspectionQasitetypeEnumLowArea,
FieldseekerQamosquitoinspectionQasitetypeEnumMangroveEdge,
FieldseekerQamosquitoinspectionQasitetypeEnumPond,
FieldseekerQamosquitoinspectionQasitetypeEnumPondEdge,
FieldseekerQamosquitoinspectionQasitetypeEnumSwale,
}
}
type FieldseekerQamosquitoinspectionQasitetypeEnum string
func (e FieldseekerQamosquitoinspectionQasitetypeEnum) String() string {
return string(e)
}
func (e FieldseekerQamosquitoinspectionQasitetypeEnum) Valid() bool {
switch e {
case FieldseekerQamosquitoinspectionQasitetypeEnumDetentionPond,
FieldseekerQamosquitoinspectionQasitetypeEnumDitch,
FieldseekerQamosquitoinspectionQasitetypeEnumLowArea,
FieldseekerQamosquitoinspectionQasitetypeEnumMangroveEdge,
FieldseekerQamosquitoinspectionQasitetypeEnumPond,
FieldseekerQamosquitoinspectionQasitetypeEnumPondEdge,
FieldseekerQamosquitoinspectionQasitetypeEnumSwale:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerQamosquitoinspectionQasitetypeEnum) All() []FieldseekerQamosquitoinspectionQasitetypeEnum {
return AllFieldseekerQamosquitoinspectionQasitetypeEnum()
}
func (e FieldseekerQamosquitoinspectionQasitetypeEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQasitetypeEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerQamosquitoinspectionQasitetypeEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQasitetypeEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerQamosquitoinspectionQasitetypeEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerQamosquitoinspectionQasitetypeEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerQamosquitoinspectionQasitetypeEnum(x)
case []byte:
*e = FieldseekerQamosquitoinspectionQasitetypeEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerQamosquitoinspectionQasitetypeEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerQamosquitoinspectionQasitetypeEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerQamosquitoinspectionQasoilconditionEnum
const (
FieldseekerQamosquitoinspectionQasoilconditionEnumCracked FieldseekerQamosquitoinspectionQasoilconditionEnum = "Cracked"
FieldseekerQamosquitoinspectionQasoilconditionEnumDry FieldseekerQamosquitoinspectionQasoilconditionEnum = "Dry"
FieldseekerQamosquitoinspectionQasoilconditionEnumInundated FieldseekerQamosquitoinspectionQasoilconditionEnum = "Inundated"
FieldseekerQamosquitoinspectionQasoilconditionEnumSaturated FieldseekerQamosquitoinspectionQasoilconditionEnum = "Saturated"
FieldseekerQamosquitoinspectionQasoilconditionEnumSurfaceMoist FieldseekerQamosquitoinspectionQasoilconditionEnum = "Surface Moist"
)
func AllFieldseekerQamosquitoinspectionQasoilconditionEnum() []FieldseekerQamosquitoinspectionQasoilconditionEnum {
return []FieldseekerQamosquitoinspectionQasoilconditionEnum{
FieldseekerQamosquitoinspectionQasoilconditionEnumCracked,
FieldseekerQamosquitoinspectionQasoilconditionEnumDry,
FieldseekerQamosquitoinspectionQasoilconditionEnumInundated,
FieldseekerQamosquitoinspectionQasoilconditionEnumSaturated,
FieldseekerQamosquitoinspectionQasoilconditionEnumSurfaceMoist,
}
}
type FieldseekerQamosquitoinspectionQasoilconditionEnum string
func (e FieldseekerQamosquitoinspectionQasoilconditionEnum) String() string {
return string(e)
}
func (e FieldseekerQamosquitoinspectionQasoilconditionEnum) Valid() bool {
switch e {
case FieldseekerQamosquitoinspectionQasoilconditionEnumCracked,
FieldseekerQamosquitoinspectionQasoilconditionEnumDry,
FieldseekerQamosquitoinspectionQasoilconditionEnumInundated,
FieldseekerQamosquitoinspectionQasoilconditionEnumSaturated,
FieldseekerQamosquitoinspectionQasoilconditionEnumSurfaceMoist:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerQamosquitoinspectionQasoilconditionEnum) All() []FieldseekerQamosquitoinspectionQasoilconditionEnum {
return AllFieldseekerQamosquitoinspectionQasoilconditionEnum()
}
func (e FieldseekerQamosquitoinspectionQasoilconditionEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQasoilconditionEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerQamosquitoinspectionQasoilconditionEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQasoilconditionEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerQamosquitoinspectionQasoilconditionEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerQamosquitoinspectionQasoilconditionEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerQamosquitoinspectionQasoilconditionEnum(x)
case []byte:
*e = FieldseekerQamosquitoinspectionQasoilconditionEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerQamosquitoinspectionQasoilconditionEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerQamosquitoinspectionQasoilconditionEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerQamosquitoinspectionQasourcereductionEnum
const (
FieldseekerQamosquitoinspectionQasourcereductionEnum1TractorU3CDay FieldseekerQamosquitoinspectionQasourcereductionEnum = "1 tractor < day"
FieldseekerQamosquitoinspectionQasourcereductionEnumAdjustFloodIrrigation FieldseekerQamosquitoinspectionQasourcereductionEnum = "adjust flood irrigation"
FieldseekerQamosquitoinspectionQasourcereductionEnumAdjustTurfIrrigation FieldseekerQamosquitoinspectionQasourcereductionEnum = "adjust turf irrigation"
FieldseekerQamosquitoinspectionQasourcereductionEnumClearOutflow FieldseekerQamosquitoinspectionQasourcereductionEnum = "clear outflow"
FieldseekerQamosquitoinspectionQasourcereductionEnumCutDitch FieldseekerQamosquitoinspectionQasourcereductionEnum = "cut ditch"
FieldseekerQamosquitoinspectionQasourcereductionEnumHandGrading FieldseekerQamosquitoinspectionQasourcereductionEnum = "hand grading"
FieldseekerQamosquitoinspectionQasourcereductionEnumLaserLeveling FieldseekerQamosquitoinspectionQasourcereductionEnum = "laser leveling"
FieldseekerQamosquitoinspectionQasourcereductionEnumMultipleLoadsSoil FieldseekerQamosquitoinspectionQasourcereductionEnum = "multiple loads soil"
FieldseekerQamosquitoinspectionQasourcereductionEnumNone FieldseekerQamosquitoinspectionQasourcereductionEnum = "none"
)
func AllFieldseekerQamosquitoinspectionQasourcereductionEnum() []FieldseekerQamosquitoinspectionQasourcereductionEnum {
return []FieldseekerQamosquitoinspectionQasourcereductionEnum{
FieldseekerQamosquitoinspectionQasourcereductionEnum1TractorU3CDay,
FieldseekerQamosquitoinspectionQasourcereductionEnumAdjustFloodIrrigation,
FieldseekerQamosquitoinspectionQasourcereductionEnumAdjustTurfIrrigation,
FieldseekerQamosquitoinspectionQasourcereductionEnumClearOutflow,
FieldseekerQamosquitoinspectionQasourcereductionEnumCutDitch,
FieldseekerQamosquitoinspectionQasourcereductionEnumHandGrading,
FieldseekerQamosquitoinspectionQasourcereductionEnumLaserLeveling,
FieldseekerQamosquitoinspectionQasourcereductionEnumMultipleLoadsSoil,
FieldseekerQamosquitoinspectionQasourcereductionEnumNone,
}
}
type FieldseekerQamosquitoinspectionQasourcereductionEnum string
func (e FieldseekerQamosquitoinspectionQasourcereductionEnum) String() string {
return string(e)
}
func (e FieldseekerQamosquitoinspectionQasourcereductionEnum) Valid() bool {
switch e {
case FieldseekerQamosquitoinspectionQasourcereductionEnum1TractorU3CDay,
FieldseekerQamosquitoinspectionQasourcereductionEnumAdjustFloodIrrigation,
FieldseekerQamosquitoinspectionQasourcereductionEnumAdjustTurfIrrigation,
FieldseekerQamosquitoinspectionQasourcereductionEnumClearOutflow,
FieldseekerQamosquitoinspectionQasourcereductionEnumCutDitch,
FieldseekerQamosquitoinspectionQasourcereductionEnumHandGrading,
FieldseekerQamosquitoinspectionQasourcereductionEnumLaserLeveling,
FieldseekerQamosquitoinspectionQasourcereductionEnumMultipleLoadsSoil,
FieldseekerQamosquitoinspectionQasourcereductionEnumNone:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerQamosquitoinspectionQasourcereductionEnum) All() []FieldseekerQamosquitoinspectionQasourcereductionEnum {
return AllFieldseekerQamosquitoinspectionQasourcereductionEnum()
}
func (e FieldseekerQamosquitoinspectionQasourcereductionEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQasourcereductionEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerQamosquitoinspectionQasourcereductionEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQasourcereductionEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerQamosquitoinspectionQasourcereductionEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerQamosquitoinspectionQasourcereductionEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerQamosquitoinspectionQasourcereductionEnum(x)
case []byte:
*e = FieldseekerQamosquitoinspectionQasourcereductionEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerQamosquitoinspectionQasourcereductionEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerQamosquitoinspectionQasourcereductionEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerQamosquitoinspectionQavegetationEnum
const (
FieldseekerQamosquitoinspectionQavegetationEnumAlgae FieldseekerQamosquitoinspectionQavegetationEnum = "Algae"
FieldseekerQamosquitoinspectionQavegetationEnumCattails FieldseekerQamosquitoinspectionQavegetationEnum = "Cattails"
FieldseekerQamosquitoinspectionQavegetationEnumDuckweed FieldseekerQamosquitoinspectionQavegetationEnum = "Duckweed"
FieldseekerQamosquitoinspectionQavegetationEnumGlasswort FieldseekerQamosquitoinspectionQavegetationEnum = "Glasswort"
FieldseekerQamosquitoinspectionQavegetationEnumGrassOnEdge FieldseekerQamosquitoinspectionQavegetationEnum = "Grass on edge"
FieldseekerQamosquitoinspectionQavegetationEnumMangrove FieldseekerQamosquitoinspectionQavegetationEnum = "Mangrove"
FieldseekerQamosquitoinspectionQavegetationEnumMosquitoFern FieldseekerQamosquitoinspectionQavegetationEnum = "Mosquito fern"
FieldseekerQamosquitoinspectionQavegetationEnumMuskgrass FieldseekerQamosquitoinspectionQavegetationEnum = "Muskgrass"
FieldseekerQamosquitoinspectionQavegetationEnumMyriophyllum FieldseekerQamosquitoinspectionQavegetationEnum = "Myriophyllum"
FieldseekerQamosquitoinspectionQavegetationEnumOther FieldseekerQamosquitoinspectionQavegetationEnum = "Other"
FieldseekerQamosquitoinspectionQavegetationEnumRottingVegetation FieldseekerQamosquitoinspectionQavegetationEnum = "Rotting vegetation"
FieldseekerQamosquitoinspectionQavegetationEnumSaltwort FieldseekerQamosquitoinspectionQavegetationEnum = "Saltwort"
FieldseekerQamosquitoinspectionQavegetationEnumSedges FieldseekerQamosquitoinspectionQavegetationEnum = "Sedges"
)
func AllFieldseekerQamosquitoinspectionQavegetationEnum() []FieldseekerQamosquitoinspectionQavegetationEnum {
return []FieldseekerQamosquitoinspectionQavegetationEnum{
FieldseekerQamosquitoinspectionQavegetationEnumAlgae,
FieldseekerQamosquitoinspectionQavegetationEnumCattails,
FieldseekerQamosquitoinspectionQavegetationEnumDuckweed,
FieldseekerQamosquitoinspectionQavegetationEnumGlasswort,
FieldseekerQamosquitoinspectionQavegetationEnumGrassOnEdge,
FieldseekerQamosquitoinspectionQavegetationEnumMangrove,
FieldseekerQamosquitoinspectionQavegetationEnumMosquitoFern,
FieldseekerQamosquitoinspectionQavegetationEnumMuskgrass,
FieldseekerQamosquitoinspectionQavegetationEnumMyriophyllum,
FieldseekerQamosquitoinspectionQavegetationEnumOther,
FieldseekerQamosquitoinspectionQavegetationEnumRottingVegetation,
FieldseekerQamosquitoinspectionQavegetationEnumSaltwort,
FieldseekerQamosquitoinspectionQavegetationEnumSedges,
}
}
type FieldseekerQamosquitoinspectionQavegetationEnum string
func (e FieldseekerQamosquitoinspectionQavegetationEnum) String() string {
return string(e)
}
func (e FieldseekerQamosquitoinspectionQavegetationEnum) Valid() bool {
switch e {
case FieldseekerQamosquitoinspectionQavegetationEnumAlgae,
FieldseekerQamosquitoinspectionQavegetationEnumCattails,
FieldseekerQamosquitoinspectionQavegetationEnumDuckweed,
FieldseekerQamosquitoinspectionQavegetationEnumGlasswort,
FieldseekerQamosquitoinspectionQavegetationEnumGrassOnEdge,
FieldseekerQamosquitoinspectionQavegetationEnumMangrove,
FieldseekerQamosquitoinspectionQavegetationEnumMosquitoFern,
FieldseekerQamosquitoinspectionQavegetationEnumMuskgrass,
FieldseekerQamosquitoinspectionQavegetationEnumMyriophyllum,
FieldseekerQamosquitoinspectionQavegetationEnumOther,
FieldseekerQamosquitoinspectionQavegetationEnumRottingVegetation,
FieldseekerQamosquitoinspectionQavegetationEnumSaltwort,
FieldseekerQamosquitoinspectionQavegetationEnumSedges:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerQamosquitoinspectionQavegetationEnum) All() []FieldseekerQamosquitoinspectionQavegetationEnum {
return AllFieldseekerQamosquitoinspectionQavegetationEnum()
}
func (e FieldseekerQamosquitoinspectionQavegetationEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQavegetationEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerQamosquitoinspectionQavegetationEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQavegetationEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerQamosquitoinspectionQavegetationEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerQamosquitoinspectionQavegetationEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerQamosquitoinspectionQavegetationEnum(x)
case []byte:
*e = FieldseekerQamosquitoinspectionQavegetationEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerQamosquitoinspectionQavegetationEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerQamosquitoinspectionQavegetationEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerQamosquitoinspectionQawaterconditionsEnum
const (
FieldseekerQamosquitoinspectionQawaterconditionsEnumU22rustU22Material FieldseekerQamosquitoinspectionQawaterconditionsEnum = "\"rust\" material"
FieldseekerQamosquitoinspectionQawaterconditionsEnumClear FieldseekerQamosquitoinspectionQawaterconditionsEnum = "Clear"
FieldseekerQamosquitoinspectionQawaterconditionsEnumCloudyU2ffines FieldseekerQamosquitoinspectionQawaterconditionsEnum = "Cloudy/fines"
FieldseekerQamosquitoinspectionQawaterconditionsEnumFloatingDebris FieldseekerQamosquitoinspectionQawaterconditionsEnum = "Floating debris"
FieldseekerQamosquitoinspectionQawaterconditionsEnumSubmergedU2fdecomU2eDebris FieldseekerQamosquitoinspectionQawaterconditionsEnum = "Submerged/decom. debris"
)
func AllFieldseekerQamosquitoinspectionQawaterconditionsEnum() []FieldseekerQamosquitoinspectionQawaterconditionsEnum {
return []FieldseekerQamosquitoinspectionQawaterconditionsEnum{
FieldseekerQamosquitoinspectionQawaterconditionsEnumU22rustU22Material,
FieldseekerQamosquitoinspectionQawaterconditionsEnumClear,
FieldseekerQamosquitoinspectionQawaterconditionsEnumCloudyU2ffines,
FieldseekerQamosquitoinspectionQawaterconditionsEnumFloatingDebris,
FieldseekerQamosquitoinspectionQawaterconditionsEnumSubmergedU2fdecomU2eDebris,
}
}
type FieldseekerQamosquitoinspectionQawaterconditionsEnum string
func (e FieldseekerQamosquitoinspectionQawaterconditionsEnum) String() string {
return string(e)
}
func (e FieldseekerQamosquitoinspectionQawaterconditionsEnum) Valid() bool {
switch e {
case FieldseekerQamosquitoinspectionQawaterconditionsEnumU22rustU22Material,
FieldseekerQamosquitoinspectionQawaterconditionsEnumClear,
FieldseekerQamosquitoinspectionQawaterconditionsEnumCloudyU2ffines,
FieldseekerQamosquitoinspectionQawaterconditionsEnumFloatingDebris,
FieldseekerQamosquitoinspectionQawaterconditionsEnumSubmergedU2fdecomU2eDebris:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerQamosquitoinspectionQawaterconditionsEnum) All() []FieldseekerQamosquitoinspectionQawaterconditionsEnum {
return AllFieldseekerQamosquitoinspectionQawaterconditionsEnum()
}
func (e FieldseekerQamosquitoinspectionQawaterconditionsEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQawaterconditionsEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerQamosquitoinspectionQawaterconditionsEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQawaterconditionsEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerQamosquitoinspectionQawaterconditionsEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerQamosquitoinspectionQawaterconditionsEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerQamosquitoinspectionQawaterconditionsEnum(x)
case []byte:
*e = FieldseekerQamosquitoinspectionQawaterconditionsEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerQamosquitoinspectionQawaterconditionsEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerQamosquitoinspectionQawaterconditionsEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerQamosquitoinspectionQawaterdurationEnum
const (
FieldseekerQamosquitoinspectionQawaterdurationEnumU7emonth FieldseekerQamosquitoinspectionQawaterdurationEnum = "~month"
FieldseekerQamosquitoinspectionQawaterdurationEnumU7eweek FieldseekerQamosquitoinspectionQawaterdurationEnum = "~week"
FieldseekerQamosquitoinspectionQawaterdurationEnumU3C1Week FieldseekerQamosquitoinspectionQawaterdurationEnum = "<1 week"
FieldseekerQamosquitoinspectionQawaterdurationEnumU3cday FieldseekerQamosquitoinspectionQawaterdurationEnum = "<day"
FieldseekerQamosquitoinspectionQawaterdurationEnumU3cmonth FieldseekerQamosquitoinspectionQawaterdurationEnum = "<month"
FieldseekerQamosquitoinspectionQawaterdurationEnumU3emonth FieldseekerQamosquitoinspectionQawaterdurationEnum = ">month"
FieldseekerQamosquitoinspectionQawaterdurationEnumU3eweek FieldseekerQamosquitoinspectionQawaterdurationEnum = ">week"
)
func AllFieldseekerQamosquitoinspectionQawaterdurationEnum() []FieldseekerQamosquitoinspectionQawaterdurationEnum {
return []FieldseekerQamosquitoinspectionQawaterdurationEnum{
FieldseekerQamosquitoinspectionQawaterdurationEnumU7emonth,
FieldseekerQamosquitoinspectionQawaterdurationEnumU7eweek,
FieldseekerQamosquitoinspectionQawaterdurationEnumU3C1Week,
FieldseekerQamosquitoinspectionQawaterdurationEnumU3cday,
FieldseekerQamosquitoinspectionQawaterdurationEnumU3cmonth,
FieldseekerQamosquitoinspectionQawaterdurationEnumU3emonth,
FieldseekerQamosquitoinspectionQawaterdurationEnumU3eweek,
}
}
type FieldseekerQamosquitoinspectionQawaterdurationEnum string
func (e FieldseekerQamosquitoinspectionQawaterdurationEnum) String() string {
return string(e)
}
func (e FieldseekerQamosquitoinspectionQawaterdurationEnum) Valid() bool {
switch e {
case FieldseekerQamosquitoinspectionQawaterdurationEnumU7emonth,
FieldseekerQamosquitoinspectionQawaterdurationEnumU7eweek,
FieldseekerQamosquitoinspectionQawaterdurationEnumU3C1Week,
FieldseekerQamosquitoinspectionQawaterdurationEnumU3cday,
FieldseekerQamosquitoinspectionQawaterdurationEnumU3cmonth,
FieldseekerQamosquitoinspectionQawaterdurationEnumU3emonth,
FieldseekerQamosquitoinspectionQawaterdurationEnumU3eweek:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerQamosquitoinspectionQawaterdurationEnum) All() []FieldseekerQamosquitoinspectionQawaterdurationEnum {
return AllFieldseekerQamosquitoinspectionQawaterdurationEnum()
}
func (e FieldseekerQamosquitoinspectionQawaterdurationEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQawaterdurationEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerQamosquitoinspectionQawaterdurationEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQawaterdurationEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerQamosquitoinspectionQawaterdurationEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerQamosquitoinspectionQawaterdurationEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerQamosquitoinspectionQawaterdurationEnum(x)
case []byte:
*e = FieldseekerQamosquitoinspectionQawaterdurationEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerQamosquitoinspectionQawaterdurationEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerQamosquitoinspectionQawaterdurationEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerQamosquitoinspectionQawatermovementEnum
const (
FieldseekerQamosquitoinspectionQawatermovementEnumFast FieldseekerQamosquitoinspectionQawatermovementEnum = "Fast"
FieldseekerQamosquitoinspectionQawatermovementEnumMedium FieldseekerQamosquitoinspectionQawatermovementEnum = "Medium"
FieldseekerQamosquitoinspectionQawatermovementEnumNone FieldseekerQamosquitoinspectionQawatermovementEnum = "None"
FieldseekerQamosquitoinspectionQawatermovementEnumSlow FieldseekerQamosquitoinspectionQawatermovementEnum = "Slow"
FieldseekerQamosquitoinspectionQawatermovementEnumVerySlow FieldseekerQamosquitoinspectionQawatermovementEnum = "Very Slow"
)
func AllFieldseekerQamosquitoinspectionQawatermovementEnum() []FieldseekerQamosquitoinspectionQawatermovementEnum {
return []FieldseekerQamosquitoinspectionQawatermovementEnum{
FieldseekerQamosquitoinspectionQawatermovementEnumFast,
FieldseekerQamosquitoinspectionQawatermovementEnumMedium,
FieldseekerQamosquitoinspectionQawatermovementEnumNone,
FieldseekerQamosquitoinspectionQawatermovementEnumSlow,
FieldseekerQamosquitoinspectionQawatermovementEnumVerySlow,
}
}
type FieldseekerQamosquitoinspectionQawatermovementEnum string
func (e FieldseekerQamosquitoinspectionQawatermovementEnum) String() string {
return string(e)
}
func (e FieldseekerQamosquitoinspectionQawatermovementEnum) Valid() bool {
switch e {
case FieldseekerQamosquitoinspectionQawatermovementEnumFast,
FieldseekerQamosquitoinspectionQawatermovementEnumMedium,
FieldseekerQamosquitoinspectionQawatermovementEnumNone,
FieldseekerQamosquitoinspectionQawatermovementEnumSlow,
FieldseekerQamosquitoinspectionQawatermovementEnumVerySlow:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerQamosquitoinspectionQawatermovementEnum) All() []FieldseekerQamosquitoinspectionQawatermovementEnum {
return AllFieldseekerQamosquitoinspectionQawatermovementEnum()
}
func (e FieldseekerQamosquitoinspectionQawatermovementEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQawatermovementEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerQamosquitoinspectionQawatermovementEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQawatermovementEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerQamosquitoinspectionQawatermovementEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerQamosquitoinspectionQawatermovementEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerQamosquitoinspectionQawatermovementEnum(x)
case []byte:
*e = FieldseekerQamosquitoinspectionQawatermovementEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerQamosquitoinspectionQawatermovementEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerQamosquitoinspectionQawatermovementEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerQamosquitoinspectionQawatersourceEnum
const (
FieldseekerQamosquitoinspectionQawatersourceEnumIrrigation FieldseekerQamosquitoinspectionQawatersourceEnum = "Irrigation"
FieldseekerQamosquitoinspectionQawatersourceEnumManuallyControlled FieldseekerQamosquitoinspectionQawatersourceEnum = "Manually Controlled"
FieldseekerQamosquitoinspectionQawatersourceEnumPercolation FieldseekerQamosquitoinspectionQawatersourceEnum = "Percolation"
FieldseekerQamosquitoinspectionQawatersourceEnumRainRunoff FieldseekerQamosquitoinspectionQawatersourceEnum = "Rain Runoff"
FieldseekerQamosquitoinspectionQawatersourceEnumTidal FieldseekerQamosquitoinspectionQawatersourceEnum = "Tidal"
FieldseekerQamosquitoinspectionQawatersourceEnumWaterTable FieldseekerQamosquitoinspectionQawatersourceEnum = "Water Table"
)
func AllFieldseekerQamosquitoinspectionQawatersourceEnum() []FieldseekerQamosquitoinspectionQawatersourceEnum {
return []FieldseekerQamosquitoinspectionQawatersourceEnum{
FieldseekerQamosquitoinspectionQawatersourceEnumIrrigation,
FieldseekerQamosquitoinspectionQawatersourceEnumManuallyControlled,
FieldseekerQamosquitoinspectionQawatersourceEnumPercolation,
FieldseekerQamosquitoinspectionQawatersourceEnumRainRunoff,
FieldseekerQamosquitoinspectionQawatersourceEnumTidal,
FieldseekerQamosquitoinspectionQawatersourceEnumWaterTable,
}
}
type FieldseekerQamosquitoinspectionQawatersourceEnum string
func (e FieldseekerQamosquitoinspectionQawatersourceEnum) String() string {
return string(e)
}
func (e FieldseekerQamosquitoinspectionQawatersourceEnum) Valid() bool {
switch e {
case FieldseekerQamosquitoinspectionQawatersourceEnumIrrigation,
FieldseekerQamosquitoinspectionQawatersourceEnumManuallyControlled,
FieldseekerQamosquitoinspectionQawatersourceEnumPercolation,
FieldseekerQamosquitoinspectionQawatersourceEnumRainRunoff,
FieldseekerQamosquitoinspectionQawatersourceEnumTidal,
FieldseekerQamosquitoinspectionQawatersourceEnumWaterTable:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerQamosquitoinspectionQawatersourceEnum) All() []FieldseekerQamosquitoinspectionQawatersourceEnum {
return AllFieldseekerQamosquitoinspectionQawatersourceEnum()
}
func (e FieldseekerQamosquitoinspectionQawatersourceEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQawatersourceEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerQamosquitoinspectionQawatersourceEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerQamosquitoinspectionQawatersourceEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerQamosquitoinspectionQawatersourceEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerQamosquitoinspectionQawatersourceEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerQamosquitoinspectionQawatersourceEnum(x)
case []byte:
*e = FieldseekerQamosquitoinspectionQawatersourceEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerQamosquitoinspectionQawatersourceEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerQamosquitoinspectionQawatersourceEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerRodentlocationLocationpriority1Enum
const (
FieldseekerRodentlocationLocationpriority1EnumLow FieldseekerRodentlocationLocationpriority1Enum = "Low"
FieldseekerRodentlocationLocationpriority1EnumMedium FieldseekerRodentlocationLocationpriority1Enum = "Medium"
FieldseekerRodentlocationLocationpriority1EnumHigh FieldseekerRodentlocationLocationpriority1Enum = "High"
FieldseekerRodentlocationLocationpriority1EnumNone FieldseekerRodentlocationLocationpriority1Enum = "None"
)
func AllFieldseekerRodentlocationLocationpriority1Enum() []FieldseekerRodentlocationLocationpriority1Enum {
return []FieldseekerRodentlocationLocationpriority1Enum{
FieldseekerRodentlocationLocationpriority1EnumLow,
FieldseekerRodentlocationLocationpriority1EnumMedium,
FieldseekerRodentlocationLocationpriority1EnumHigh,
FieldseekerRodentlocationLocationpriority1EnumNone,
}
}
type FieldseekerRodentlocationLocationpriority1Enum string
func (e FieldseekerRodentlocationLocationpriority1Enum) String() string {
return string(e)
}
func (e FieldseekerRodentlocationLocationpriority1Enum) Valid() bool {
switch e {
case FieldseekerRodentlocationLocationpriority1EnumLow,
FieldseekerRodentlocationLocationpriority1EnumMedium,
FieldseekerRodentlocationLocationpriority1EnumHigh,
FieldseekerRodentlocationLocationpriority1EnumNone:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerRodentlocationLocationpriority1Enum) All() []FieldseekerRodentlocationLocationpriority1Enum {
return AllFieldseekerRodentlocationLocationpriority1Enum()
}
func (e FieldseekerRodentlocationLocationpriority1Enum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerRodentlocationLocationpriority1Enum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerRodentlocationLocationpriority1Enum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerRodentlocationLocationpriority1Enum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerRodentlocationLocationpriority1Enum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerRodentlocationLocationpriority1Enum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerRodentlocationLocationpriority1Enum(x)
case []byte:
*e = FieldseekerRodentlocationLocationpriority1Enum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerRodentlocationLocationpriority1Enum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerRodentlocationLocationpriority1Enum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerRodentlocationLocationusetype1Enum
const (
FieldseekerRodentlocationLocationusetype1EnumResidential FieldseekerRodentlocationLocationusetype1Enum = "Residential"
FieldseekerRodentlocationLocationusetype1EnumCommercial FieldseekerRodentlocationLocationusetype1Enum = "Commercial"
FieldseekerRodentlocationLocationusetype1EnumIndustrial FieldseekerRodentlocationLocationusetype1Enum = "Industrial"
FieldseekerRodentlocationLocationusetype1EnumAgricultural FieldseekerRodentlocationLocationusetype1Enum = "Agricultural"
FieldseekerRodentlocationLocationusetype1EnumMixedUse FieldseekerRodentlocationLocationusetype1Enum = "Mixed use"
)
func AllFieldseekerRodentlocationLocationusetype1Enum() []FieldseekerRodentlocationLocationusetype1Enum {
return []FieldseekerRodentlocationLocationusetype1Enum{
FieldseekerRodentlocationLocationusetype1EnumResidential,
FieldseekerRodentlocationLocationusetype1EnumCommercial,
FieldseekerRodentlocationLocationusetype1EnumIndustrial,
FieldseekerRodentlocationLocationusetype1EnumAgricultural,
FieldseekerRodentlocationLocationusetype1EnumMixedUse,
}
}
type FieldseekerRodentlocationLocationusetype1Enum string
func (e FieldseekerRodentlocationLocationusetype1Enum) String() string {
return string(e)
}
func (e FieldseekerRodentlocationLocationusetype1Enum) Valid() bool {
switch e {
case FieldseekerRodentlocationLocationusetype1EnumResidential,
FieldseekerRodentlocationLocationusetype1EnumCommercial,
FieldseekerRodentlocationLocationusetype1EnumIndustrial,
FieldseekerRodentlocationLocationusetype1EnumAgricultural,
FieldseekerRodentlocationLocationusetype1EnumMixedUse:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerRodentlocationLocationusetype1Enum) All() []FieldseekerRodentlocationLocationusetype1Enum {
return AllFieldseekerRodentlocationLocationusetype1Enum()
}
func (e FieldseekerRodentlocationLocationusetype1Enum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerRodentlocationLocationusetype1Enum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerRodentlocationLocationusetype1Enum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerRodentlocationLocationusetype1Enum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerRodentlocationLocationusetype1Enum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerRodentlocationLocationusetype1Enum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerRodentlocationLocationusetype1Enum(x)
case []byte:
*e = FieldseekerRodentlocationLocationusetype1Enum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerRodentlocationLocationusetype1Enum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerRodentlocationLocationusetype1Enum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerRodentlocationNotinuitF1Enum
const (
FieldseekerRodentlocationNotinuitF1Enum1 FieldseekerRodentlocationNotinuitF1Enum = "1"
FieldseekerRodentlocationNotinuitF1Enum0 FieldseekerRodentlocationNotinuitF1Enum = "0"
)
func AllFieldseekerRodentlocationNotinuitF1Enum() []FieldseekerRodentlocationNotinuitF1Enum {
return []FieldseekerRodentlocationNotinuitF1Enum{
FieldseekerRodentlocationNotinuitF1Enum1,
FieldseekerRodentlocationNotinuitF1Enum0,
}
}
type FieldseekerRodentlocationNotinuitF1Enum string
func (e FieldseekerRodentlocationNotinuitF1Enum) String() string {
return string(e)
}
func (e FieldseekerRodentlocationNotinuitF1Enum) Valid() bool {
switch e {
case FieldseekerRodentlocationNotinuitF1Enum1,
FieldseekerRodentlocationNotinuitF1Enum0:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerRodentlocationNotinuitF1Enum) All() []FieldseekerRodentlocationNotinuitF1Enum {
return AllFieldseekerRodentlocationNotinuitF1Enum()
}
func (e FieldseekerRodentlocationNotinuitF1Enum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerRodentlocationNotinuitF1Enum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerRodentlocationNotinuitF1Enum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerRodentlocationNotinuitF1Enum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerRodentlocationNotinuitF1Enum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerRodentlocationNotinuitF1Enum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerRodentlocationNotinuitF1Enum(x)
case []byte:
*e = FieldseekerRodentlocationNotinuitF1Enum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerRodentlocationNotinuitF1Enum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerRodentlocationNotinuitF1Enum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerRodentlocationRodentlocationSymbologyEnum
const (
FieldseekerRodentlocationRodentlocationSymbologyEnumAction FieldseekerRodentlocationRodentlocationSymbologyEnum = "ACTION"
FieldseekerRodentlocationRodentlocationSymbologyEnumInactive FieldseekerRodentlocationRodentlocationSymbologyEnum = "INACTIVE"
FieldseekerRodentlocationRodentlocationSymbologyEnumNone FieldseekerRodentlocationRodentlocationSymbologyEnum = "NONE"
)
func AllFieldseekerRodentlocationRodentlocationSymbologyEnum() []FieldseekerRodentlocationRodentlocationSymbologyEnum {
return []FieldseekerRodentlocationRodentlocationSymbologyEnum{
FieldseekerRodentlocationRodentlocationSymbologyEnumAction,
FieldseekerRodentlocationRodentlocationSymbologyEnumInactive,
FieldseekerRodentlocationRodentlocationSymbologyEnumNone,
}
}
type FieldseekerRodentlocationRodentlocationSymbologyEnum string
func (e FieldseekerRodentlocationRodentlocationSymbologyEnum) String() string {
return string(e)
}
func (e FieldseekerRodentlocationRodentlocationSymbologyEnum) Valid() bool {
switch e {
case FieldseekerRodentlocationRodentlocationSymbologyEnumAction,
FieldseekerRodentlocationRodentlocationSymbologyEnumInactive,
FieldseekerRodentlocationRodentlocationSymbologyEnumNone:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerRodentlocationRodentlocationSymbologyEnum) All() []FieldseekerRodentlocationRodentlocationSymbologyEnum {
return AllFieldseekerRodentlocationRodentlocationSymbologyEnum()
}
func (e FieldseekerRodentlocationRodentlocationSymbologyEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerRodentlocationRodentlocationSymbologyEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerRodentlocationRodentlocationSymbologyEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerRodentlocationRodentlocationSymbologyEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerRodentlocationRodentlocationSymbologyEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerRodentlocationRodentlocationSymbologyEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerRodentlocationRodentlocationSymbologyEnum(x)
case []byte:
*e = FieldseekerRodentlocationRodentlocationSymbologyEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerRodentlocationRodentlocationSymbologyEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerRodentlocationRodentlocationSymbologyEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerRodentlocationRodentlocationhabitatEnum
const (
FieldseekerRodentlocationRodentlocationhabitatEnumCommercial FieldseekerRodentlocationRodentlocationhabitatEnum = "Commercial"
FieldseekerRodentlocationRodentlocationhabitatEnumIndustrial FieldseekerRodentlocationRodentlocationhabitatEnum = "Industrial"
FieldseekerRodentlocationRodentlocationhabitatEnumResidential FieldseekerRodentlocationRodentlocationhabitatEnum = "Residential"
FieldseekerRodentlocationRodentlocationhabitatEnumWoodPile FieldseekerRodentlocationRodentlocationhabitatEnum = "Wood Pile"
)
func AllFieldseekerRodentlocationRodentlocationhabitatEnum() []FieldseekerRodentlocationRodentlocationhabitatEnum {
return []FieldseekerRodentlocationRodentlocationhabitatEnum{
FieldseekerRodentlocationRodentlocationhabitatEnumCommercial,
FieldseekerRodentlocationRodentlocationhabitatEnumIndustrial,
FieldseekerRodentlocationRodentlocationhabitatEnumResidential,
FieldseekerRodentlocationRodentlocationhabitatEnumWoodPile,
}
}
type FieldseekerRodentlocationRodentlocationhabitatEnum string
func (e FieldseekerRodentlocationRodentlocationhabitatEnum) String() string {
return string(e)
}
func (e FieldseekerRodentlocationRodentlocationhabitatEnum) Valid() bool {
switch e {
case FieldseekerRodentlocationRodentlocationhabitatEnumCommercial,
FieldseekerRodentlocationRodentlocationhabitatEnumIndustrial,
FieldseekerRodentlocationRodentlocationhabitatEnumResidential,
FieldseekerRodentlocationRodentlocationhabitatEnumWoodPile:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerRodentlocationRodentlocationhabitatEnum) All() []FieldseekerRodentlocationRodentlocationhabitatEnum {
return AllFieldseekerRodentlocationRodentlocationhabitatEnum()
}
func (e FieldseekerRodentlocationRodentlocationhabitatEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerRodentlocationRodentlocationhabitatEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerRodentlocationRodentlocationhabitatEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerRodentlocationRodentlocationhabitatEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerRodentlocationRodentlocationhabitatEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerRodentlocationRodentlocationhabitatEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerRodentlocationRodentlocationhabitatEnum(x)
case []byte:
*e = FieldseekerRodentlocationRodentlocationhabitatEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerRodentlocationRodentlocationhabitatEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerRodentlocationRodentlocationhabitatEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerSamplecollectionMosquitoactivityEnum
const (
FieldseekerSamplecollectionMosquitoactivityEnumRoutineInspection FieldseekerSamplecollectionMosquitoactivityEnum = "Routine inspection"
FieldseekerSamplecollectionMosquitoactivityEnumPreTreatment FieldseekerSamplecollectionMosquitoactivityEnum = "Pre-treatment"
FieldseekerSamplecollectionMosquitoactivityEnumMaintenance FieldseekerSamplecollectionMosquitoactivityEnum = "Maintenance"
FieldseekerSamplecollectionMosquitoactivityEnumUlv FieldseekerSamplecollectionMosquitoactivityEnum = "ULV"
FieldseekerSamplecollectionMosquitoactivityEnumBarrier FieldseekerSamplecollectionMosquitoactivityEnum = "BARRIER"
FieldseekerSamplecollectionMosquitoactivityEnumLogin FieldseekerSamplecollectionMosquitoactivityEnum = "LOGIN"
FieldseekerSamplecollectionMosquitoactivityEnumTreatsd FieldseekerSamplecollectionMosquitoactivityEnum = "TREATSD"
FieldseekerSamplecollectionMosquitoactivityEnumSD FieldseekerSamplecollectionMosquitoactivityEnum = "SD"
FieldseekerSamplecollectionMosquitoactivityEnumSitevisit FieldseekerSamplecollectionMosquitoactivityEnum = "SITEVISIT"
FieldseekerSamplecollectionMosquitoactivityEnumOnline FieldseekerSamplecollectionMosquitoactivityEnum = "ONLINE"
FieldseekerSamplecollectionMosquitoactivityEnumSync FieldseekerSamplecollectionMosquitoactivityEnum = "SYNC"
FieldseekerSamplecollectionMosquitoactivityEnumCreatesr FieldseekerSamplecollectionMosquitoactivityEnum = "CREATESR"
FieldseekerSamplecollectionMosquitoactivityEnumLC FieldseekerSamplecollectionMosquitoactivityEnum = "LC"
FieldseekerSamplecollectionMosquitoactivityEnumAcceptsr FieldseekerSamplecollectionMosquitoactivityEnum = "ACCEPTSR"
FieldseekerSamplecollectionMosquitoactivityEnumPoint FieldseekerSamplecollectionMosquitoactivityEnum = "POINT"
FieldseekerSamplecollectionMosquitoactivityEnumDownload FieldseekerSamplecollectionMosquitoactivityEnum = "DOWNLOAD"
FieldseekerSamplecollectionMosquitoactivityEnumCompletesr FieldseekerSamplecollectionMosquitoactivityEnum = "COMPLETESR"
FieldseekerSamplecollectionMosquitoactivityEnumPolygon FieldseekerSamplecollectionMosquitoactivityEnum = "POLYGON"
FieldseekerSamplecollectionMosquitoactivityEnumTrap FieldseekerSamplecollectionMosquitoactivityEnum = "TRAP"
FieldseekerSamplecollectionMosquitoactivityEnumSample FieldseekerSamplecollectionMosquitoactivityEnum = "SAMPLE"
FieldseekerSamplecollectionMosquitoactivityEnumQa FieldseekerSamplecollectionMosquitoactivityEnum = "QA"
FieldseekerSamplecollectionMosquitoactivityEnumPta FieldseekerSamplecollectionMosquitoactivityEnum = "PTA"
FieldseekerSamplecollectionMosquitoactivityEnumFieldscouting FieldseekerSamplecollectionMosquitoactivityEnum = "FIELDSCOUTING"
FieldseekerSamplecollectionMosquitoactivityEnumOffline FieldseekerSamplecollectionMosquitoactivityEnum = "OFFLINE"
FieldseekerSamplecollectionMosquitoactivityEnumLine FieldseekerSamplecollectionMosquitoactivityEnum = "LINE"
FieldseekerSamplecollectionMosquitoactivityEnumTraplocation FieldseekerSamplecollectionMosquitoactivityEnum = "TRAPLOCATION"
FieldseekerSamplecollectionMosquitoactivityEnumSamplelocation FieldseekerSamplecollectionMosquitoactivityEnum = "SAMPLELOCATION"
FieldseekerSamplecollectionMosquitoactivityEnumLclocation FieldseekerSamplecollectionMosquitoactivityEnum = "LCLOCATION"
)
func AllFieldseekerSamplecollectionMosquitoactivityEnum() []FieldseekerSamplecollectionMosquitoactivityEnum {
return []FieldseekerSamplecollectionMosquitoactivityEnum{
FieldseekerSamplecollectionMosquitoactivityEnumRoutineInspection,
FieldseekerSamplecollectionMosquitoactivityEnumPreTreatment,
FieldseekerSamplecollectionMosquitoactivityEnumMaintenance,
FieldseekerSamplecollectionMosquitoactivityEnumUlv,
FieldseekerSamplecollectionMosquitoactivityEnumBarrier,
FieldseekerSamplecollectionMosquitoactivityEnumLogin,
FieldseekerSamplecollectionMosquitoactivityEnumTreatsd,
FieldseekerSamplecollectionMosquitoactivityEnumSD,
FieldseekerSamplecollectionMosquitoactivityEnumSitevisit,
FieldseekerSamplecollectionMosquitoactivityEnumOnline,
FieldseekerSamplecollectionMosquitoactivityEnumSync,
FieldseekerSamplecollectionMosquitoactivityEnumCreatesr,
FieldseekerSamplecollectionMosquitoactivityEnumLC,
FieldseekerSamplecollectionMosquitoactivityEnumAcceptsr,
FieldseekerSamplecollectionMosquitoactivityEnumPoint,
FieldseekerSamplecollectionMosquitoactivityEnumDownload,
FieldseekerSamplecollectionMosquitoactivityEnumCompletesr,
FieldseekerSamplecollectionMosquitoactivityEnumPolygon,
FieldseekerSamplecollectionMosquitoactivityEnumTrap,
FieldseekerSamplecollectionMosquitoactivityEnumSample,
FieldseekerSamplecollectionMosquitoactivityEnumQa,
FieldseekerSamplecollectionMosquitoactivityEnumPta,
FieldseekerSamplecollectionMosquitoactivityEnumFieldscouting,
FieldseekerSamplecollectionMosquitoactivityEnumOffline,
FieldseekerSamplecollectionMosquitoactivityEnumLine,
FieldseekerSamplecollectionMosquitoactivityEnumTraplocation,
FieldseekerSamplecollectionMosquitoactivityEnumSamplelocation,
FieldseekerSamplecollectionMosquitoactivityEnumLclocation,
}
}
type FieldseekerSamplecollectionMosquitoactivityEnum string
func (e FieldseekerSamplecollectionMosquitoactivityEnum) String() string {
return string(e)
}
func (e FieldseekerSamplecollectionMosquitoactivityEnum) Valid() bool {
switch e {
case FieldseekerSamplecollectionMosquitoactivityEnumRoutineInspection,
FieldseekerSamplecollectionMosquitoactivityEnumPreTreatment,
FieldseekerSamplecollectionMosquitoactivityEnumMaintenance,
FieldseekerSamplecollectionMosquitoactivityEnumUlv,
FieldseekerSamplecollectionMosquitoactivityEnumBarrier,
FieldseekerSamplecollectionMosquitoactivityEnumLogin,
FieldseekerSamplecollectionMosquitoactivityEnumTreatsd,
FieldseekerSamplecollectionMosquitoactivityEnumSD,
FieldseekerSamplecollectionMosquitoactivityEnumSitevisit,
FieldseekerSamplecollectionMosquitoactivityEnumOnline,
FieldseekerSamplecollectionMosquitoactivityEnumSync,
FieldseekerSamplecollectionMosquitoactivityEnumCreatesr,
FieldseekerSamplecollectionMosquitoactivityEnumLC,
FieldseekerSamplecollectionMosquitoactivityEnumAcceptsr,
FieldseekerSamplecollectionMosquitoactivityEnumPoint,
FieldseekerSamplecollectionMosquitoactivityEnumDownload,
FieldseekerSamplecollectionMosquitoactivityEnumCompletesr,
FieldseekerSamplecollectionMosquitoactivityEnumPolygon,
FieldseekerSamplecollectionMosquitoactivityEnumTrap,
FieldseekerSamplecollectionMosquitoactivityEnumSample,
FieldseekerSamplecollectionMosquitoactivityEnumQa,
FieldseekerSamplecollectionMosquitoactivityEnumPta,
FieldseekerSamplecollectionMosquitoactivityEnumFieldscouting,
FieldseekerSamplecollectionMosquitoactivityEnumOffline,
FieldseekerSamplecollectionMosquitoactivityEnumLine,
FieldseekerSamplecollectionMosquitoactivityEnumTraplocation,
FieldseekerSamplecollectionMosquitoactivityEnumSamplelocation,
FieldseekerSamplecollectionMosquitoactivityEnumLclocation:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerSamplecollectionMosquitoactivityEnum) All() []FieldseekerSamplecollectionMosquitoactivityEnum {
return AllFieldseekerSamplecollectionMosquitoactivityEnum()
}
func (e FieldseekerSamplecollectionMosquitoactivityEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplecollectionMosquitoactivityEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerSamplecollectionMosquitoactivityEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplecollectionMosquitoactivityEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerSamplecollectionMosquitoactivityEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerSamplecollectionMosquitoactivityEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerSamplecollectionMosquitoactivityEnum(x)
case []byte:
*e = FieldseekerSamplecollectionMosquitoactivityEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerSamplecollectionMosquitoactivityEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerSamplecollectionMosquitoactivityEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerSamplecollectionMosquitodiseaseEnum
const (
FieldseekerSamplecollectionMosquitodiseaseEnumEee FieldseekerSamplecollectionMosquitodiseaseEnum = "EEE"
FieldseekerSamplecollectionMosquitodiseaseEnumWNV FieldseekerSamplecollectionMosquitodiseaseEnum = "WNV"
FieldseekerSamplecollectionMosquitodiseaseEnumDengue FieldseekerSamplecollectionMosquitodiseaseEnum = "Dengue"
FieldseekerSamplecollectionMosquitodiseaseEnumZika FieldseekerSamplecollectionMosquitodiseaseEnum = "Zika"
)
func AllFieldseekerSamplecollectionMosquitodiseaseEnum() []FieldseekerSamplecollectionMosquitodiseaseEnum {
return []FieldseekerSamplecollectionMosquitodiseaseEnum{
FieldseekerSamplecollectionMosquitodiseaseEnumEee,
FieldseekerSamplecollectionMosquitodiseaseEnumWNV,
FieldseekerSamplecollectionMosquitodiseaseEnumDengue,
FieldseekerSamplecollectionMosquitodiseaseEnumZika,
}
}
type FieldseekerSamplecollectionMosquitodiseaseEnum string
func (e FieldseekerSamplecollectionMosquitodiseaseEnum) String() string {
return string(e)
}
func (e FieldseekerSamplecollectionMosquitodiseaseEnum) Valid() bool {
switch e {
case FieldseekerSamplecollectionMosquitodiseaseEnumEee,
FieldseekerSamplecollectionMosquitodiseaseEnumWNV,
FieldseekerSamplecollectionMosquitodiseaseEnumDengue,
FieldseekerSamplecollectionMosquitodiseaseEnumZika:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerSamplecollectionMosquitodiseaseEnum) All() []FieldseekerSamplecollectionMosquitodiseaseEnum {
return AllFieldseekerSamplecollectionMosquitodiseaseEnum()
}
func (e FieldseekerSamplecollectionMosquitodiseaseEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplecollectionMosquitodiseaseEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerSamplecollectionMosquitodiseaseEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplecollectionMosquitodiseaseEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerSamplecollectionMosquitodiseaseEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerSamplecollectionMosquitodiseaseEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerSamplecollectionMosquitodiseaseEnum(x)
case []byte:
*e = FieldseekerSamplecollectionMosquitodiseaseEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerSamplecollectionMosquitodiseaseEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerSamplecollectionMosquitodiseaseEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerSamplecollectionMosquitolabnameEnum
const (
FieldseekerSamplecollectionMosquitolabnameEnumInternalLab FieldseekerSamplecollectionMosquitolabnameEnum = "Internal Lab"
FieldseekerSamplecollectionMosquitolabnameEnumStateLab FieldseekerSamplecollectionMosquitolabnameEnum = "State Lab"
)
func AllFieldseekerSamplecollectionMosquitolabnameEnum() []FieldseekerSamplecollectionMosquitolabnameEnum {
return []FieldseekerSamplecollectionMosquitolabnameEnum{
FieldseekerSamplecollectionMosquitolabnameEnumInternalLab,
FieldseekerSamplecollectionMosquitolabnameEnumStateLab,
}
}
type FieldseekerSamplecollectionMosquitolabnameEnum string
func (e FieldseekerSamplecollectionMosquitolabnameEnum) String() string {
return string(e)
}
func (e FieldseekerSamplecollectionMosquitolabnameEnum) Valid() bool {
switch e {
case FieldseekerSamplecollectionMosquitolabnameEnumInternalLab,
FieldseekerSamplecollectionMosquitolabnameEnumStateLab:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerSamplecollectionMosquitolabnameEnum) All() []FieldseekerSamplecollectionMosquitolabnameEnum {
return AllFieldseekerSamplecollectionMosquitolabnameEnum()
}
func (e FieldseekerSamplecollectionMosquitolabnameEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplecollectionMosquitolabnameEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerSamplecollectionMosquitolabnameEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplecollectionMosquitolabnameEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerSamplecollectionMosquitolabnameEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerSamplecollectionMosquitolabnameEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerSamplecollectionMosquitolabnameEnum(x)
case []byte:
*e = FieldseekerSamplecollectionMosquitolabnameEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerSamplecollectionMosquitolabnameEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerSamplecollectionMosquitolabnameEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerSamplecollectionMosquitosampleconditionEnum
const (
FieldseekerSamplecollectionMosquitosampleconditionEnumUsable FieldseekerSamplecollectionMosquitosampleconditionEnum = "Usable"
FieldseekerSamplecollectionMosquitosampleconditionEnumUnusable FieldseekerSamplecollectionMosquitosampleconditionEnum = "Unusable"
)
func AllFieldseekerSamplecollectionMosquitosampleconditionEnum() []FieldseekerSamplecollectionMosquitosampleconditionEnum {
return []FieldseekerSamplecollectionMosquitosampleconditionEnum{
FieldseekerSamplecollectionMosquitosampleconditionEnumUsable,
FieldseekerSamplecollectionMosquitosampleconditionEnumUnusable,
}
}
type FieldseekerSamplecollectionMosquitosampleconditionEnum string
func (e FieldseekerSamplecollectionMosquitosampleconditionEnum) String() string {
return string(e)
}
func (e FieldseekerSamplecollectionMosquitosampleconditionEnum) Valid() bool {
switch e {
case FieldseekerSamplecollectionMosquitosampleconditionEnumUsable,
FieldseekerSamplecollectionMosquitosampleconditionEnumUnusable:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerSamplecollectionMosquitosampleconditionEnum) All() []FieldseekerSamplecollectionMosquitosampleconditionEnum {
return AllFieldseekerSamplecollectionMosquitosampleconditionEnum()
}
func (e FieldseekerSamplecollectionMosquitosampleconditionEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplecollectionMosquitosampleconditionEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerSamplecollectionMosquitosampleconditionEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplecollectionMosquitosampleconditionEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerSamplecollectionMosquitosampleconditionEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerSamplecollectionMosquitosampleconditionEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerSamplecollectionMosquitosampleconditionEnum(x)
case []byte:
*e = FieldseekerSamplecollectionMosquitosampleconditionEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerSamplecollectionMosquitosampleconditionEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerSamplecollectionMosquitosampleconditionEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerSamplecollectionMosquitosamplespeciesEnum
const (
FieldseekerSamplecollectionMosquitosamplespeciesEnumChicken FieldseekerSamplecollectionMosquitosamplespeciesEnum = "Chicken"
FieldseekerSamplecollectionMosquitosamplespeciesEnumWildBird FieldseekerSamplecollectionMosquitosamplespeciesEnum = "Wild bird"
FieldseekerSamplecollectionMosquitosamplespeciesEnumHorse FieldseekerSamplecollectionMosquitosamplespeciesEnum = "Horse"
FieldseekerSamplecollectionMosquitosamplespeciesEnumHuman FieldseekerSamplecollectionMosquitosamplespeciesEnum = "Human"
)
func AllFieldseekerSamplecollectionMosquitosamplespeciesEnum() []FieldseekerSamplecollectionMosquitosamplespeciesEnum {
return []FieldseekerSamplecollectionMosquitosamplespeciesEnum{
FieldseekerSamplecollectionMosquitosamplespeciesEnumChicken,
FieldseekerSamplecollectionMosquitosamplespeciesEnumWildBird,
FieldseekerSamplecollectionMosquitosamplespeciesEnumHorse,
FieldseekerSamplecollectionMosquitosamplespeciesEnumHuman,
}
}
type FieldseekerSamplecollectionMosquitosamplespeciesEnum string
func (e FieldseekerSamplecollectionMosquitosamplespeciesEnum) String() string {
return string(e)
}
func (e FieldseekerSamplecollectionMosquitosamplespeciesEnum) Valid() bool {
switch e {
case FieldseekerSamplecollectionMosquitosamplespeciesEnumChicken,
FieldseekerSamplecollectionMosquitosamplespeciesEnumWildBird,
FieldseekerSamplecollectionMosquitosamplespeciesEnumHorse,
FieldseekerSamplecollectionMosquitosamplespeciesEnumHuman:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerSamplecollectionMosquitosamplespeciesEnum) All() []FieldseekerSamplecollectionMosquitosamplespeciesEnum {
return AllFieldseekerSamplecollectionMosquitosamplespeciesEnum()
}
func (e FieldseekerSamplecollectionMosquitosamplespeciesEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplecollectionMosquitosamplespeciesEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerSamplecollectionMosquitosamplespeciesEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplecollectionMosquitosamplespeciesEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerSamplecollectionMosquitosamplespeciesEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerSamplecollectionMosquitosamplespeciesEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerSamplecollectionMosquitosamplespeciesEnum(x)
case []byte:
*e = FieldseekerSamplecollectionMosquitosamplespeciesEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerSamplecollectionMosquitosamplespeciesEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerSamplecollectionMosquitosamplespeciesEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerSamplecollectionMosquitosampletypeEnum
const (
FieldseekerSamplecollectionMosquitosampletypeEnumBlood FieldseekerSamplecollectionMosquitosampletypeEnum = "Blood"
FieldseekerSamplecollectionMosquitosampletypeEnumTissue FieldseekerSamplecollectionMosquitosampletypeEnum = "Tissue"
FieldseekerSamplecollectionMosquitosampletypeEnumSpecimen FieldseekerSamplecollectionMosquitosampletypeEnum = "Specimen"
FieldseekerSamplecollectionMosquitosampletypeEnumCarcass FieldseekerSamplecollectionMosquitosampletypeEnum = "Carcass"
)
func AllFieldseekerSamplecollectionMosquitosampletypeEnum() []FieldseekerSamplecollectionMosquitosampletypeEnum {
return []FieldseekerSamplecollectionMosquitosampletypeEnum{
FieldseekerSamplecollectionMosquitosampletypeEnumBlood,
FieldseekerSamplecollectionMosquitosampletypeEnumTissue,
FieldseekerSamplecollectionMosquitosampletypeEnumSpecimen,
FieldseekerSamplecollectionMosquitosampletypeEnumCarcass,
}
}
type FieldseekerSamplecollectionMosquitosampletypeEnum string
func (e FieldseekerSamplecollectionMosquitosampletypeEnum) String() string {
return string(e)
}
func (e FieldseekerSamplecollectionMosquitosampletypeEnum) Valid() bool {
switch e {
case FieldseekerSamplecollectionMosquitosampletypeEnumBlood,
FieldseekerSamplecollectionMosquitosampletypeEnumTissue,
FieldseekerSamplecollectionMosquitosampletypeEnumSpecimen,
FieldseekerSamplecollectionMosquitosampletypeEnumCarcass:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerSamplecollectionMosquitosampletypeEnum) All() []FieldseekerSamplecollectionMosquitosampletypeEnum {
return AllFieldseekerSamplecollectionMosquitosampletypeEnum()
}
func (e FieldseekerSamplecollectionMosquitosampletypeEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplecollectionMosquitosampletypeEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerSamplecollectionMosquitosampletypeEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplecollectionMosquitosampletypeEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerSamplecollectionMosquitosampletypeEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerSamplecollectionMosquitosampletypeEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerSamplecollectionMosquitosampletypeEnum(x)
case []byte:
*e = FieldseekerSamplecollectionMosquitosampletypeEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerSamplecollectionMosquitosampletypeEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerSamplecollectionMosquitosampletypeEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerSamplecollectionMosquitositeconditionEnum
const (
FieldseekerSamplecollectionMosquitositeconditionEnumDry FieldseekerSamplecollectionMosquitositeconditionEnum = "Dry"
FieldseekerSamplecollectionMosquitositeconditionEnumClean FieldseekerSamplecollectionMosquitositeconditionEnum = "Clean"
FieldseekerSamplecollectionMosquitositeconditionEnumFull FieldseekerSamplecollectionMosquitositeconditionEnum = "Full"
FieldseekerSamplecollectionMosquitositeconditionEnumLow FieldseekerSamplecollectionMosquitositeconditionEnum = "Low"
)
func AllFieldseekerSamplecollectionMosquitositeconditionEnum() []FieldseekerSamplecollectionMosquitositeconditionEnum {
return []FieldseekerSamplecollectionMosquitositeconditionEnum{
FieldseekerSamplecollectionMosquitositeconditionEnumDry,
FieldseekerSamplecollectionMosquitositeconditionEnumClean,
FieldseekerSamplecollectionMosquitositeconditionEnumFull,
FieldseekerSamplecollectionMosquitositeconditionEnumLow,
}
}
type FieldseekerSamplecollectionMosquitositeconditionEnum string
func (e FieldseekerSamplecollectionMosquitositeconditionEnum) String() string {
return string(e)
}
func (e FieldseekerSamplecollectionMosquitositeconditionEnum) Valid() bool {
switch e {
case FieldseekerSamplecollectionMosquitositeconditionEnumDry,
FieldseekerSamplecollectionMosquitositeconditionEnumClean,
FieldseekerSamplecollectionMosquitositeconditionEnumFull,
FieldseekerSamplecollectionMosquitositeconditionEnumLow:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerSamplecollectionMosquitositeconditionEnum) All() []FieldseekerSamplecollectionMosquitositeconditionEnum {
return AllFieldseekerSamplecollectionMosquitositeconditionEnum()
}
func (e FieldseekerSamplecollectionMosquitositeconditionEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplecollectionMosquitositeconditionEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerSamplecollectionMosquitositeconditionEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplecollectionMosquitositeconditionEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerSamplecollectionMosquitositeconditionEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerSamplecollectionMosquitositeconditionEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerSamplecollectionMosquitositeconditionEnum(x)
case []byte:
*e = FieldseekerSamplecollectionMosquitositeconditionEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerSamplecollectionMosquitositeconditionEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerSamplecollectionMosquitositeconditionEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerSamplecollectionMosquitotestmethodEnum
const (
FieldseekerSamplecollectionMosquitotestmethodEnumRamp FieldseekerSamplecollectionMosquitotestmethodEnum = "RAMP"
FieldseekerSamplecollectionMosquitotestmethodEnumVectest FieldseekerSamplecollectionMosquitotestmethodEnum = "VecTest"
FieldseekerSamplecollectionMosquitotestmethodEnumElisa FieldseekerSamplecollectionMosquitotestmethodEnum = "ELISA"
FieldseekerSamplecollectionMosquitotestmethodEnumRTPCR FieldseekerSamplecollectionMosquitotestmethodEnum = "RT-PCR"
)
func AllFieldseekerSamplecollectionMosquitotestmethodEnum() []FieldseekerSamplecollectionMosquitotestmethodEnum {
return []FieldseekerSamplecollectionMosquitotestmethodEnum{
FieldseekerSamplecollectionMosquitotestmethodEnumRamp,
FieldseekerSamplecollectionMosquitotestmethodEnumVectest,
FieldseekerSamplecollectionMosquitotestmethodEnumElisa,
FieldseekerSamplecollectionMosquitotestmethodEnumRTPCR,
}
}
type FieldseekerSamplecollectionMosquitotestmethodEnum string
func (e FieldseekerSamplecollectionMosquitotestmethodEnum) String() string {
return string(e)
}
func (e FieldseekerSamplecollectionMosquitotestmethodEnum) Valid() bool {
switch e {
case FieldseekerSamplecollectionMosquitotestmethodEnumRamp,
FieldseekerSamplecollectionMosquitotestmethodEnumVectest,
FieldseekerSamplecollectionMosquitotestmethodEnumElisa,
FieldseekerSamplecollectionMosquitotestmethodEnumRTPCR:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerSamplecollectionMosquitotestmethodEnum) All() []FieldseekerSamplecollectionMosquitotestmethodEnum {
return AllFieldseekerSamplecollectionMosquitotestmethodEnum()
}
func (e FieldseekerSamplecollectionMosquitotestmethodEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplecollectionMosquitotestmethodEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerSamplecollectionMosquitotestmethodEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplecollectionMosquitotestmethodEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerSamplecollectionMosquitotestmethodEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerSamplecollectionMosquitotestmethodEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerSamplecollectionMosquitotestmethodEnum(x)
case []byte:
*e = FieldseekerSamplecollectionMosquitotestmethodEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerSamplecollectionMosquitotestmethodEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerSamplecollectionMosquitotestmethodEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerSamplecollectionNotinuisexEnum
const (
FieldseekerSamplecollectionNotinuisexEnumM FieldseekerSamplecollectionNotinuisexEnum = "M"
FieldseekerSamplecollectionNotinuisexEnumF FieldseekerSamplecollectionNotinuisexEnum = "F"
FieldseekerSamplecollectionNotinuisexEnumU FieldseekerSamplecollectionNotinuisexEnum = "U"
)
func AllFieldseekerSamplecollectionNotinuisexEnum() []FieldseekerSamplecollectionNotinuisexEnum {
return []FieldseekerSamplecollectionNotinuisexEnum{
FieldseekerSamplecollectionNotinuisexEnumM,
FieldseekerSamplecollectionNotinuisexEnumF,
FieldseekerSamplecollectionNotinuisexEnumU,
}
}
type FieldseekerSamplecollectionNotinuisexEnum string
func (e FieldseekerSamplecollectionNotinuisexEnum) String() string {
return string(e)
}
func (e FieldseekerSamplecollectionNotinuisexEnum) Valid() bool {
switch e {
case FieldseekerSamplecollectionNotinuisexEnumM,
FieldseekerSamplecollectionNotinuisexEnumF,
FieldseekerSamplecollectionNotinuisexEnumU:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerSamplecollectionNotinuisexEnum) All() []FieldseekerSamplecollectionNotinuisexEnum {
return AllFieldseekerSamplecollectionNotinuisexEnum()
}
func (e FieldseekerSamplecollectionNotinuisexEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplecollectionNotinuisexEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerSamplecollectionNotinuisexEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplecollectionNotinuisexEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerSamplecollectionNotinuisexEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerSamplecollectionNotinuisexEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerSamplecollectionNotinuisexEnum(x)
case []byte:
*e = FieldseekerSamplecollectionNotinuisexEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerSamplecollectionNotinuisexEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerSamplecollectionNotinuisexEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerSamplecollectionNotinuitFEnum
const (
FieldseekerSamplecollectionNotinuitFEnum1 FieldseekerSamplecollectionNotinuitFEnum = "1"
FieldseekerSamplecollectionNotinuitFEnum0 FieldseekerSamplecollectionNotinuitFEnum = "0"
)
func AllFieldseekerSamplecollectionNotinuitFEnum() []FieldseekerSamplecollectionNotinuitFEnum {
return []FieldseekerSamplecollectionNotinuitFEnum{
FieldseekerSamplecollectionNotinuitFEnum1,
FieldseekerSamplecollectionNotinuitFEnum0,
}
}
type FieldseekerSamplecollectionNotinuitFEnum string
func (e FieldseekerSamplecollectionNotinuitFEnum) String() string {
return string(e)
}
func (e FieldseekerSamplecollectionNotinuitFEnum) Valid() bool {
switch e {
case FieldseekerSamplecollectionNotinuitFEnum1,
FieldseekerSamplecollectionNotinuitFEnum0:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerSamplecollectionNotinuitFEnum) All() []FieldseekerSamplecollectionNotinuitFEnum {
return AllFieldseekerSamplecollectionNotinuitFEnum()
}
func (e FieldseekerSamplecollectionNotinuitFEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplecollectionNotinuitFEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerSamplecollectionNotinuitFEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplecollectionNotinuitFEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerSamplecollectionNotinuitFEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerSamplecollectionNotinuitFEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerSamplecollectionNotinuitFEnum(x)
case []byte:
*e = FieldseekerSamplecollectionNotinuitFEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerSamplecollectionNotinuitFEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerSamplecollectionNotinuitFEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerSamplecollectionNotinuiwinddirectionEnum
const (
FieldseekerSamplecollectionNotinuiwinddirectionEnumN FieldseekerSamplecollectionNotinuiwinddirectionEnum = "N"
FieldseekerSamplecollectionNotinuiwinddirectionEnumNe FieldseekerSamplecollectionNotinuiwinddirectionEnum = "NE"
FieldseekerSamplecollectionNotinuiwinddirectionEnumE FieldseekerSamplecollectionNotinuiwinddirectionEnum = "E"
FieldseekerSamplecollectionNotinuiwinddirectionEnumSe FieldseekerSamplecollectionNotinuiwinddirectionEnum = "SE"
FieldseekerSamplecollectionNotinuiwinddirectionEnumS FieldseekerSamplecollectionNotinuiwinddirectionEnum = "S"
FieldseekerSamplecollectionNotinuiwinddirectionEnumSW FieldseekerSamplecollectionNotinuiwinddirectionEnum = "SW"
FieldseekerSamplecollectionNotinuiwinddirectionEnumW FieldseekerSamplecollectionNotinuiwinddirectionEnum = "W"
FieldseekerSamplecollectionNotinuiwinddirectionEnumNW FieldseekerSamplecollectionNotinuiwinddirectionEnum = "NW"
)
func AllFieldseekerSamplecollectionNotinuiwinddirectionEnum() []FieldseekerSamplecollectionNotinuiwinddirectionEnum {
return []FieldseekerSamplecollectionNotinuiwinddirectionEnum{
FieldseekerSamplecollectionNotinuiwinddirectionEnumN,
FieldseekerSamplecollectionNotinuiwinddirectionEnumNe,
FieldseekerSamplecollectionNotinuiwinddirectionEnumE,
FieldseekerSamplecollectionNotinuiwinddirectionEnumSe,
FieldseekerSamplecollectionNotinuiwinddirectionEnumS,
FieldseekerSamplecollectionNotinuiwinddirectionEnumSW,
FieldseekerSamplecollectionNotinuiwinddirectionEnumW,
FieldseekerSamplecollectionNotinuiwinddirectionEnumNW,
}
}
type FieldseekerSamplecollectionNotinuiwinddirectionEnum string
func (e FieldseekerSamplecollectionNotinuiwinddirectionEnum) String() string {
return string(e)
}
func (e FieldseekerSamplecollectionNotinuiwinddirectionEnum) Valid() bool {
switch e {
case FieldseekerSamplecollectionNotinuiwinddirectionEnumN,
FieldseekerSamplecollectionNotinuiwinddirectionEnumNe,
FieldseekerSamplecollectionNotinuiwinddirectionEnumE,
FieldseekerSamplecollectionNotinuiwinddirectionEnumSe,
FieldseekerSamplecollectionNotinuiwinddirectionEnumS,
FieldseekerSamplecollectionNotinuiwinddirectionEnumSW,
FieldseekerSamplecollectionNotinuiwinddirectionEnumW,
FieldseekerSamplecollectionNotinuiwinddirectionEnumNW:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerSamplecollectionNotinuiwinddirectionEnum) All() []FieldseekerSamplecollectionNotinuiwinddirectionEnum {
return AllFieldseekerSamplecollectionNotinuiwinddirectionEnum()
}
func (e FieldseekerSamplecollectionNotinuiwinddirectionEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplecollectionNotinuiwinddirectionEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerSamplecollectionNotinuiwinddirectionEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplecollectionNotinuiwinddirectionEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerSamplecollectionNotinuiwinddirectionEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerSamplecollectionNotinuiwinddirectionEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerSamplecollectionNotinuiwinddirectionEnum(x)
case []byte:
*e = FieldseekerSamplecollectionNotinuiwinddirectionEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerSamplecollectionNotinuiwinddirectionEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerSamplecollectionNotinuiwinddirectionEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerSamplelocationLocationhabitattypeEnum
const (
FieldseekerSamplelocationLocationhabitattypeEnumCatchBasin FieldseekerSamplelocationLocationhabitattypeEnum = "Catch basin"
FieldseekerSamplelocationLocationhabitattypeEnumCreek FieldseekerSamplelocationLocationhabitattypeEnum = "Creek"
FieldseekerSamplelocationLocationhabitattypeEnumDitch FieldseekerSamplelocationLocationhabitattypeEnum = "Ditch"
FieldseekerSamplelocationLocationhabitattypeEnumFieldU2fpasture FieldseekerSamplelocationLocationhabitattypeEnum = "Field/Pasture"
FieldseekerSamplelocationLocationhabitattypeEnumPond FieldseekerSamplelocationLocationhabitattypeEnum = "Pond"
FieldseekerSamplelocationLocationhabitattypeEnumPondFish FieldseekerSamplelocationLocationhabitattypeEnum = "Pond fish"
FieldseekerSamplelocationLocationhabitattypeEnumPondMarshy FieldseekerSamplelocationLocationhabitattypeEnum = "Pond marshy"
FieldseekerSamplelocationLocationhabitattypeEnumPondOrnamental FieldseekerSamplelocationLocationhabitattypeEnum = "Pond ornamental"
FieldseekerSamplelocationLocationhabitattypeEnumPondRetention FieldseekerSamplelocationLocationhabitattypeEnum = "Pond retention"
FieldseekerSamplelocationLocationhabitattypeEnumPondSewage FieldseekerSamplelocationLocationhabitattypeEnum = "Pond sewage"
FieldseekerSamplelocationLocationhabitattypeEnumPondWoodland FieldseekerSamplelocationLocationhabitattypeEnum = "Pond woodland"
FieldseekerSamplelocationLocationhabitattypeEnumTreeHole FieldseekerSamplelocationLocationhabitattypeEnum = "Tree hole"
FieldseekerSamplelocationLocationhabitattypeEnumSwimmingPool FieldseekerSamplelocationLocationhabitattypeEnum = "Swimming pool"
FieldseekerSamplelocationLocationhabitattypeEnumPark FieldseekerSamplelocationLocationhabitattypeEnum = "Park"
FieldseekerSamplelocationLocationhabitattypeEnumUnknown FieldseekerSamplelocationLocationhabitattypeEnum = "Unknown"
)
func AllFieldseekerSamplelocationLocationhabitattypeEnum() []FieldseekerSamplelocationLocationhabitattypeEnum {
return []FieldseekerSamplelocationLocationhabitattypeEnum{
FieldseekerSamplelocationLocationhabitattypeEnumCatchBasin,
FieldseekerSamplelocationLocationhabitattypeEnumCreek,
FieldseekerSamplelocationLocationhabitattypeEnumDitch,
FieldseekerSamplelocationLocationhabitattypeEnumFieldU2fpasture,
FieldseekerSamplelocationLocationhabitattypeEnumPond,
FieldseekerSamplelocationLocationhabitattypeEnumPondFish,
FieldseekerSamplelocationLocationhabitattypeEnumPondMarshy,
FieldseekerSamplelocationLocationhabitattypeEnumPondOrnamental,
FieldseekerSamplelocationLocationhabitattypeEnumPondRetention,
FieldseekerSamplelocationLocationhabitattypeEnumPondSewage,
FieldseekerSamplelocationLocationhabitattypeEnumPondWoodland,
FieldseekerSamplelocationLocationhabitattypeEnumTreeHole,
FieldseekerSamplelocationLocationhabitattypeEnumSwimmingPool,
FieldseekerSamplelocationLocationhabitattypeEnumPark,
FieldseekerSamplelocationLocationhabitattypeEnumUnknown,
}
}
type FieldseekerSamplelocationLocationhabitattypeEnum string
func (e FieldseekerSamplelocationLocationhabitattypeEnum) String() string {
return string(e)
}
func (e FieldseekerSamplelocationLocationhabitattypeEnum) Valid() bool {
switch e {
case FieldseekerSamplelocationLocationhabitattypeEnumCatchBasin,
FieldseekerSamplelocationLocationhabitattypeEnumCreek,
FieldseekerSamplelocationLocationhabitattypeEnumDitch,
FieldseekerSamplelocationLocationhabitattypeEnumFieldU2fpasture,
FieldseekerSamplelocationLocationhabitattypeEnumPond,
FieldseekerSamplelocationLocationhabitattypeEnumPondFish,
FieldseekerSamplelocationLocationhabitattypeEnumPondMarshy,
FieldseekerSamplelocationLocationhabitattypeEnumPondOrnamental,
FieldseekerSamplelocationLocationhabitattypeEnumPondRetention,
FieldseekerSamplelocationLocationhabitattypeEnumPondSewage,
FieldseekerSamplelocationLocationhabitattypeEnumPondWoodland,
FieldseekerSamplelocationLocationhabitattypeEnumTreeHole,
FieldseekerSamplelocationLocationhabitattypeEnumSwimmingPool,
FieldseekerSamplelocationLocationhabitattypeEnumPark,
FieldseekerSamplelocationLocationhabitattypeEnumUnknown:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerSamplelocationLocationhabitattypeEnum) All() []FieldseekerSamplelocationLocationhabitattypeEnum {
return AllFieldseekerSamplelocationLocationhabitattypeEnum()
}
func (e FieldseekerSamplelocationLocationhabitattypeEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplelocationLocationhabitattypeEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerSamplelocationLocationhabitattypeEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplelocationLocationhabitattypeEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerSamplelocationLocationhabitattypeEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerSamplelocationLocationhabitattypeEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerSamplelocationLocationhabitattypeEnum(x)
case []byte:
*e = FieldseekerSamplelocationLocationhabitattypeEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerSamplelocationLocationhabitattypeEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerSamplelocationLocationhabitattypeEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerSamplelocationLocationpriorityEnum
const (
FieldseekerSamplelocationLocationpriorityEnumLow FieldseekerSamplelocationLocationpriorityEnum = "Low"
FieldseekerSamplelocationLocationpriorityEnumMedium FieldseekerSamplelocationLocationpriorityEnum = "Medium"
FieldseekerSamplelocationLocationpriorityEnumHigh FieldseekerSamplelocationLocationpriorityEnum = "High"
FieldseekerSamplelocationLocationpriorityEnumNone FieldseekerSamplelocationLocationpriorityEnum = "None"
)
func AllFieldseekerSamplelocationLocationpriorityEnum() []FieldseekerSamplelocationLocationpriorityEnum {
return []FieldseekerSamplelocationLocationpriorityEnum{
FieldseekerSamplelocationLocationpriorityEnumLow,
FieldseekerSamplelocationLocationpriorityEnumMedium,
FieldseekerSamplelocationLocationpriorityEnumHigh,
FieldseekerSamplelocationLocationpriorityEnumNone,
}
}
type FieldseekerSamplelocationLocationpriorityEnum string
func (e FieldseekerSamplelocationLocationpriorityEnum) String() string {
return string(e)
}
func (e FieldseekerSamplelocationLocationpriorityEnum) Valid() bool {
switch e {
case FieldseekerSamplelocationLocationpriorityEnumLow,
FieldseekerSamplelocationLocationpriorityEnumMedium,
FieldseekerSamplelocationLocationpriorityEnumHigh,
FieldseekerSamplelocationLocationpriorityEnumNone:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerSamplelocationLocationpriorityEnum) All() []FieldseekerSamplelocationLocationpriorityEnum {
return AllFieldseekerSamplelocationLocationpriorityEnum()
}
func (e FieldseekerSamplelocationLocationpriorityEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplelocationLocationpriorityEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerSamplelocationLocationpriorityEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplelocationLocationpriorityEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerSamplelocationLocationpriorityEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerSamplelocationLocationpriorityEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerSamplelocationLocationpriorityEnum(x)
case []byte:
*e = FieldseekerSamplelocationLocationpriorityEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerSamplelocationLocationpriorityEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerSamplelocationLocationpriorityEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerSamplelocationNotinuitFEnum
const (
FieldseekerSamplelocationNotinuitFEnum1 FieldseekerSamplelocationNotinuitFEnum = "1"
FieldseekerSamplelocationNotinuitFEnum0 FieldseekerSamplelocationNotinuitFEnum = "0"
)
func AllFieldseekerSamplelocationNotinuitFEnum() []FieldseekerSamplelocationNotinuitFEnum {
return []FieldseekerSamplelocationNotinuitFEnum{
FieldseekerSamplelocationNotinuitFEnum1,
FieldseekerSamplelocationNotinuitFEnum0,
}
}
type FieldseekerSamplelocationNotinuitFEnum string
func (e FieldseekerSamplelocationNotinuitFEnum) String() string {
return string(e)
}
func (e FieldseekerSamplelocationNotinuitFEnum) Valid() bool {
switch e {
case FieldseekerSamplelocationNotinuitFEnum1,
FieldseekerSamplelocationNotinuitFEnum0:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerSamplelocationNotinuitFEnum) All() []FieldseekerSamplelocationNotinuitFEnum {
return AllFieldseekerSamplelocationNotinuitFEnum()
}
func (e FieldseekerSamplelocationNotinuitFEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplelocationNotinuitFEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerSamplelocationNotinuitFEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplelocationNotinuitFEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerSamplelocationNotinuitFEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerSamplelocationNotinuitFEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerSamplelocationNotinuitFEnum(x)
case []byte:
*e = FieldseekerSamplelocationNotinuitFEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerSamplelocationNotinuitFEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerSamplelocationNotinuitFEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerSamplelocationSamplelocationusetypeEnum
const (
FieldseekerSamplelocationSamplelocationusetypeEnumFlockSite FieldseekerSamplelocationSamplelocationusetypeEnum = "Flock Site"
FieldseekerSamplelocationSamplelocationusetypeEnumDeadBird FieldseekerSamplelocationSamplelocationusetypeEnum = "Dead Bird"
)
func AllFieldseekerSamplelocationSamplelocationusetypeEnum() []FieldseekerSamplelocationSamplelocationusetypeEnum {
return []FieldseekerSamplelocationSamplelocationusetypeEnum{
FieldseekerSamplelocationSamplelocationusetypeEnumFlockSite,
FieldseekerSamplelocationSamplelocationusetypeEnumDeadBird,
}
}
type FieldseekerSamplelocationSamplelocationusetypeEnum string
func (e FieldseekerSamplelocationSamplelocationusetypeEnum) String() string {
return string(e)
}
func (e FieldseekerSamplelocationSamplelocationusetypeEnum) Valid() bool {
switch e {
case FieldseekerSamplelocationSamplelocationusetypeEnumFlockSite,
FieldseekerSamplelocationSamplelocationusetypeEnumDeadBird:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerSamplelocationSamplelocationusetypeEnum) All() []FieldseekerSamplelocationSamplelocationusetypeEnum {
return AllFieldseekerSamplelocationSamplelocationusetypeEnum()
}
func (e FieldseekerSamplelocationSamplelocationusetypeEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplelocationSamplelocationusetypeEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerSamplelocationSamplelocationusetypeEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSamplelocationSamplelocationusetypeEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerSamplelocationSamplelocationusetypeEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerSamplelocationSamplelocationusetypeEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerSamplelocationSamplelocationusetypeEnum(x)
case []byte:
*e = FieldseekerSamplelocationSamplelocationusetypeEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerSamplelocationSamplelocationusetypeEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerSamplelocationSamplelocationusetypeEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerServicerequestNotinuitFEnum
const (
FieldseekerServicerequestNotinuitFEnum1 FieldseekerServicerequestNotinuitFEnum = "1"
FieldseekerServicerequestNotinuitFEnum0 FieldseekerServicerequestNotinuitFEnum = "0"
)
func AllFieldseekerServicerequestNotinuitFEnum() []FieldseekerServicerequestNotinuitFEnum {
return []FieldseekerServicerequestNotinuitFEnum{
FieldseekerServicerequestNotinuitFEnum1,
FieldseekerServicerequestNotinuitFEnum0,
}
}
type FieldseekerServicerequestNotinuitFEnum string
func (e FieldseekerServicerequestNotinuitFEnum) String() string {
return string(e)
}
func (e FieldseekerServicerequestNotinuitFEnum) Valid() bool {
switch e {
case FieldseekerServicerequestNotinuitFEnum1,
FieldseekerServicerequestNotinuitFEnum0:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerServicerequestNotinuitFEnum) All() []FieldseekerServicerequestNotinuitFEnum {
return AllFieldseekerServicerequestNotinuitFEnum()
}
func (e FieldseekerServicerequestNotinuitFEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestNotinuitFEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerServicerequestNotinuitFEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestNotinuitFEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerServicerequestNotinuitFEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerServicerequestNotinuitFEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerServicerequestNotinuitFEnum(x)
case []byte:
*e = FieldseekerServicerequestNotinuitFEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerServicerequestNotinuitFEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerServicerequestNotinuitFEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8
const (
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8AlysiaDavis FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Alysia Davis"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8AlejandraGill FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Alejandra Gill"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8AndreaTroupin FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Andrea Troupin"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8BrendaRodriguez FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Brenda Rodriguez"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8BryanFerguson FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Bryan Ferguson"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8BryanRuiz FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Bryan Ruiz"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8ConlinReis FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Conlin Reis"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8CarlosRodriguez FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Carlos Rodriguez"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8ErickArriga FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Erick Arriga"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8LandonMcgill FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Landon McGill"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8MarcoMartinez FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Marco Martinez"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8MarkNakata FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Mark Nakata"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8MarioSanchez FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Mario Sanchez"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8JuanPabloOrtega FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Juan Pablo Ortega"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8RyanSpratt FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Ryan Spratt"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8TedMcgill FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Ted McGill"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8BenjaminSperry FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Benjamin Sperry"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8ZacheryBarragan FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Zachery Barragan"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8ArturoGarciaTrejo FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Arturo Garcia-Trejo"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8JesusJolano FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Jesus Jolano"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8YajairaGodinez FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Yajaira Godinez"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8JakeMaldonado FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Jake Maldonado"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8RafaelRamirez FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Rafael Ramirez"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8LisaSalgado FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Lisa Salgado"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8KoryWilson FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Kory Wilson"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8CarlosPalacios FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Carlos Palacios"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8FatimaHidalgo FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Fatima Hidalgo"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8AaronFredrick FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Aaron Fredrick"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8JoshMalone FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Josh Malone"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8JorgePerez FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Jorge Perez"
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8LauraRomos FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 = "Laura Romos"
)
func AllFieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8() []FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 {
return []FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8{
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8AlysiaDavis,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8AlejandraGill,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8AndreaTroupin,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8BrendaRodriguez,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8BryanFerguson,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8BryanRuiz,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8ConlinReis,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8CarlosRodriguez,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8ErickArriga,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8LandonMcgill,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8MarcoMartinez,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8MarkNakata,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8MarioSanchez,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8JuanPabloOrtega,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8RyanSpratt,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8TedMcgill,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8BenjaminSperry,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8ZacheryBarragan,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8ArturoGarciaTrejo,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8JesusJolano,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8YajairaGodinez,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8JakeMaldonado,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8RafaelRamirez,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8LisaSalgado,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8KoryWilson,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8CarlosPalacios,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8FatimaHidalgo,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8AaronFredrick,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8JoshMalone,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8JorgePerez,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8LauraRomos,
}
}
type FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 string
func (e FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8) String() string {
return string(e)
}
func (e FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8) Valid() bool {
switch e {
case FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8AlysiaDavis,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8AlejandraGill,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8AndreaTroupin,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8BrendaRodriguez,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8BryanFerguson,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8BryanRuiz,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8ConlinReis,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8CarlosRodriguez,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8ErickArriga,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8LandonMcgill,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8MarcoMartinez,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8MarkNakata,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8MarioSanchez,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8JuanPabloOrtega,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8RyanSpratt,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8TedMcgill,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8BenjaminSperry,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8ZacheryBarragan,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8ArturoGarciaTrejo,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8JesusJolano,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8YajairaGodinez,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8JakeMaldonado,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8RafaelRamirez,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8LisaSalgado,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8KoryWilson,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8CarlosPalacios,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8FatimaHidalgo,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8AaronFredrick,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8JoshMalone,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8JorgePerez,
FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8LauraRomos:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8) All() []FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 {
return AllFieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8()
}
func (e FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8(x)
case []byte:
*e = FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerServicerequestServicerequestAssignedtech71D0D685868F4b7a8 value: %s", *e)
}
return nil
}
// Enum values for FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31
const (
FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e310 FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31 = "0"
FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e311 FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31 = "1"
FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e312 FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31 = "2"
FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e313 FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31 = "3"
)
func AllFieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31() []FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31 {
return []FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31{
FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e310,
FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e311,
FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e312,
FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e313,
}
}
type FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31 string
func (e FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31) String() string {
return string(e)
}
func (e FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31) Valid() bool {
switch e {
case FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e310,
FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e311,
FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e312,
FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e313:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31) All() []FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31 {
return AllFieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31()
}
func (e FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31(x)
case []byte:
*e = FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerServicerequestServicerequestDog2b95ec9712864FCD88F4F0e31 value: %s", *e)
}
return nil
}
// Enum values for FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14ab
const (
FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14abAm FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14ab = "AM"
FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14abPM FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14ab = "PM"
)
func AllFieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14ab() []FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14ab {
return []FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14ab{
FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14abAm,
FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14abPM,
}
}
type FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14ab string
func (e FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14ab) String() string {
return string(e)
}
func (e FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14ab) Valid() bool {
switch e {
case FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14abAm,
FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14abPM:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14ab) All() []FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14ab {
return AllFieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14ab()
}
func (e FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14ab) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14ab) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14ab) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14ab) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14ab) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14ab) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14ab(x)
case []byte:
*e = FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14ab(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14ab")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerServicerequestServicerequestSchedulePeriod3F40C046Afd14ab value: %s", *e)
}
return nil
}
// Enum values for FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC
const (
FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC0 FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC = "0"
FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC1 FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC = "1"
)
func AllFieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC() []FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC {
return []FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC{
FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC0,
FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC1,
}
}
type FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC string
func (e FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC) String() string {
return string(e)
}
func (e FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC) Valid() bool {
switch e {
case FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC0,
FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC1:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC) All() []FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC {
return AllFieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC()
}
func (e FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC(x)
case []byte:
*e = FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerServicerequestServicerequestSpanishAaa3dc669f9a45278ecdC value: %s", *e)
}
return nil
}
// Enum values for FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808
const (
FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808RickAlverez FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808 = "Rick Alverez"
FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808BryanFerguson FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808 = "Bryan Ferguson"
FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808BryanRuiz FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808 = "Bryan Ruiz"
FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808AndreaTroupin FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808 = "Andrea Troupin"
FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808ConlinReis FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808 = "Conlin Reis"
)
func AllFieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808() []FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808 {
return []FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808{
FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808RickAlverez,
FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808BryanFerguson,
FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808BryanRuiz,
FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808AndreaTroupin,
FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808ConlinReis,
}
}
type FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808 string
func (e FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808) String() string {
return string(e)
}
func (e FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808) Valid() bool {
switch e {
case FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808RickAlverez,
FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808BryanFerguson,
FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808BryanRuiz,
FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808AndreaTroupin,
FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808ConlinReis:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808) All() []FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808 {
return AllFieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808()
}
func (e FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808(x)
case []byte:
*e = FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerServicerequestServicerequestSupervisorEba07b90C8854fe6808 value: %s", *e)
}
return nil
}
// Enum values for FieldseekerServicerequestServicerequestcontactpreferencesEnum
const (
FieldseekerServicerequestServicerequestcontactpreferencesEnumNone FieldseekerServicerequestServicerequestcontactpreferencesEnum = "None"
FieldseekerServicerequestServicerequestcontactpreferencesEnumCall FieldseekerServicerequestServicerequestcontactpreferencesEnum = "Call"
FieldseekerServicerequestServicerequestcontactpreferencesEnumEmail FieldseekerServicerequestServicerequestcontactpreferencesEnum = "Email"
FieldseekerServicerequestServicerequestcontactpreferencesEnumText FieldseekerServicerequestServicerequestcontactpreferencesEnum = "Text"
)
func AllFieldseekerServicerequestServicerequestcontactpreferencesEnum() []FieldseekerServicerequestServicerequestcontactpreferencesEnum {
return []FieldseekerServicerequestServicerequestcontactpreferencesEnum{
FieldseekerServicerequestServicerequestcontactpreferencesEnumNone,
FieldseekerServicerequestServicerequestcontactpreferencesEnumCall,
FieldseekerServicerequestServicerequestcontactpreferencesEnumEmail,
FieldseekerServicerequestServicerequestcontactpreferencesEnumText,
}
}
type FieldseekerServicerequestServicerequestcontactpreferencesEnum string
func (e FieldseekerServicerequestServicerequestcontactpreferencesEnum) String() string {
return string(e)
}
func (e FieldseekerServicerequestServicerequestcontactpreferencesEnum) Valid() bool {
switch e {
case FieldseekerServicerequestServicerequestcontactpreferencesEnumNone,
FieldseekerServicerequestServicerequestcontactpreferencesEnumCall,
FieldseekerServicerequestServicerequestcontactpreferencesEnumEmail,
FieldseekerServicerequestServicerequestcontactpreferencesEnumText:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerServicerequestServicerequestcontactpreferencesEnum) All() []FieldseekerServicerequestServicerequestcontactpreferencesEnum {
return AllFieldseekerServicerequestServicerequestcontactpreferencesEnum()
}
func (e FieldseekerServicerequestServicerequestcontactpreferencesEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestcontactpreferencesEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerServicerequestServicerequestcontactpreferencesEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestcontactpreferencesEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerServicerequestServicerequestcontactpreferencesEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerServicerequestServicerequestcontactpreferencesEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerServicerequestServicerequestcontactpreferencesEnum(x)
case []byte:
*e = FieldseekerServicerequestServicerequestcontactpreferencesEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerServicerequestServicerequestcontactpreferencesEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerServicerequestServicerequestcontactpreferencesEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerServicerequestServicerequestissuesEnum
const (
FieldseekerServicerequestServicerequestissuesEnumBeehiveRelated FieldseekerServicerequestServicerequestissuesEnum = "Beehive Related"
FieldseekerServicerequestServicerequestissuesEnumUnsanitaryAccumulations FieldseekerServicerequestServicerequestissuesEnum = "Unsanitary Accumulations"
FieldseekerServicerequestServicerequestissuesEnumRoosterOrNoise FieldseekerServicerequestServicerequestissuesEnum = "Rooster or Noise"
FieldseekerServicerequestServicerequestissuesEnumRatsAttracted FieldseekerServicerequestServicerequestissuesEnum = "Rats Attracted"
FieldseekerServicerequestServicerequestissuesEnumOdor FieldseekerServicerequestServicerequestissuesEnum = "Odor"
FieldseekerServicerequestServicerequestissuesEnumNumberOfAnimalsOverLimit FieldseekerServicerequestServicerequestissuesEnum = "Number of Animals Over Limit"
FieldseekerServicerequestServicerequestissuesEnumLocation FieldseekerServicerequestServicerequestissuesEnum = "Location"
FieldseekerServicerequestServicerequestissuesEnumViolation FieldseekerServicerequestServicerequestissuesEnum = "Violation"
FieldseekerServicerequestServicerequestissuesEnumInadequateEnclosure FieldseekerServicerequestServicerequestissuesEnum = "Inadequate Enclosure"
FieldseekerServicerequestServicerequestissuesEnumEscapedAnimal FieldseekerServicerequestServicerequestissuesEnum = "Escaped Animal"
FieldseekerServicerequestServicerequestissuesEnumIllegalAnimal FieldseekerServicerequestServicerequestissuesEnum = "Illegal Animal"
)
func AllFieldseekerServicerequestServicerequestissuesEnum() []FieldseekerServicerequestServicerequestissuesEnum {
return []FieldseekerServicerequestServicerequestissuesEnum{
FieldseekerServicerequestServicerequestissuesEnumBeehiveRelated,
FieldseekerServicerequestServicerequestissuesEnumUnsanitaryAccumulations,
FieldseekerServicerequestServicerequestissuesEnumRoosterOrNoise,
FieldseekerServicerequestServicerequestissuesEnumRatsAttracted,
FieldseekerServicerequestServicerequestissuesEnumOdor,
FieldseekerServicerequestServicerequestissuesEnumNumberOfAnimalsOverLimit,
FieldseekerServicerequestServicerequestissuesEnumLocation,
FieldseekerServicerequestServicerequestissuesEnumViolation,
FieldseekerServicerequestServicerequestissuesEnumInadequateEnclosure,
FieldseekerServicerequestServicerequestissuesEnumEscapedAnimal,
FieldseekerServicerequestServicerequestissuesEnumIllegalAnimal,
}
}
type FieldseekerServicerequestServicerequestissuesEnum string
func (e FieldseekerServicerequestServicerequestissuesEnum) String() string {
return string(e)
}
func (e FieldseekerServicerequestServicerequestissuesEnum) Valid() bool {
switch e {
case FieldseekerServicerequestServicerequestissuesEnumBeehiveRelated,
FieldseekerServicerequestServicerequestissuesEnumUnsanitaryAccumulations,
FieldseekerServicerequestServicerequestissuesEnumRoosterOrNoise,
FieldseekerServicerequestServicerequestissuesEnumRatsAttracted,
FieldseekerServicerequestServicerequestissuesEnumOdor,
FieldseekerServicerequestServicerequestissuesEnumNumberOfAnimalsOverLimit,
FieldseekerServicerequestServicerequestissuesEnumLocation,
FieldseekerServicerequestServicerequestissuesEnumViolation,
FieldseekerServicerequestServicerequestissuesEnumInadequateEnclosure,
FieldseekerServicerequestServicerequestissuesEnumEscapedAnimal,
FieldseekerServicerequestServicerequestissuesEnumIllegalAnimal:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerServicerequestServicerequestissuesEnum) All() []FieldseekerServicerequestServicerequestissuesEnum {
return AllFieldseekerServicerequestServicerequestissuesEnum()
}
func (e FieldseekerServicerequestServicerequestissuesEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestissuesEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerServicerequestServicerequestissuesEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestissuesEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerServicerequestServicerequestissuesEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerServicerequestServicerequestissuesEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerServicerequestServicerequestissuesEnum(x)
case []byte:
*e = FieldseekerServicerequestServicerequestissuesEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerServicerequestServicerequestissuesEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerServicerequestServicerequestissuesEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerServicerequestServicerequestnextactionEnum
const (
FieldseekerServicerequestServicerequestnextactionEnumNightSpray FieldseekerServicerequestServicerequestnextactionEnum = "Night spray"
FieldseekerServicerequestServicerequestnextactionEnumSiteVisit FieldseekerServicerequestServicerequestnextactionEnum = "Site visit"
)
func AllFieldseekerServicerequestServicerequestnextactionEnum() []FieldseekerServicerequestServicerequestnextactionEnum {
return []FieldseekerServicerequestServicerequestnextactionEnum{
FieldseekerServicerequestServicerequestnextactionEnumNightSpray,
FieldseekerServicerequestServicerequestnextactionEnumSiteVisit,
}
}
type FieldseekerServicerequestServicerequestnextactionEnum string
func (e FieldseekerServicerequestServicerequestnextactionEnum) String() string {
return string(e)
}
func (e FieldseekerServicerequestServicerequestnextactionEnum) Valid() bool {
switch e {
case FieldseekerServicerequestServicerequestnextactionEnumNightSpray,
FieldseekerServicerequestServicerequestnextactionEnumSiteVisit:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerServicerequestServicerequestnextactionEnum) All() []FieldseekerServicerequestServicerequestnextactionEnum {
return AllFieldseekerServicerequestServicerequestnextactionEnum()
}
func (e FieldseekerServicerequestServicerequestnextactionEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestnextactionEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerServicerequestServicerequestnextactionEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestnextactionEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerServicerequestServicerequestnextactionEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerServicerequestServicerequestnextactionEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerServicerequestServicerequestnextactionEnum(x)
case []byte:
*e = FieldseekerServicerequestServicerequestnextactionEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerServicerequestServicerequestnextactionEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerServicerequestServicerequestnextactionEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerServicerequestServicerequestpriorityEnum
const (
FieldseekerServicerequestServicerequestpriorityEnumLow FieldseekerServicerequestServicerequestpriorityEnum = "Low"
FieldseekerServicerequestServicerequestpriorityEnumMedium FieldseekerServicerequestServicerequestpriorityEnum = "Medium"
FieldseekerServicerequestServicerequestpriorityEnumHigh FieldseekerServicerequestServicerequestpriorityEnum = "High"
FieldseekerServicerequestServicerequestpriorityEnumFollowUpVisit FieldseekerServicerequestServicerequestpriorityEnum = "Follow up Visit"
FieldseekerServicerequestServicerequestpriorityEnumHTCResponse FieldseekerServicerequestServicerequestpriorityEnum = "HTC Response"
FieldseekerServicerequestServicerequestpriorityEnumDiseaseActivityResponse FieldseekerServicerequestServicerequestpriorityEnum = "Disease Activity Response"
)
func AllFieldseekerServicerequestServicerequestpriorityEnum() []FieldseekerServicerequestServicerequestpriorityEnum {
return []FieldseekerServicerequestServicerequestpriorityEnum{
FieldseekerServicerequestServicerequestpriorityEnumLow,
FieldseekerServicerequestServicerequestpriorityEnumMedium,
FieldseekerServicerequestServicerequestpriorityEnumHigh,
FieldseekerServicerequestServicerequestpriorityEnumFollowUpVisit,
FieldseekerServicerequestServicerequestpriorityEnumHTCResponse,
FieldseekerServicerequestServicerequestpriorityEnumDiseaseActivityResponse,
}
}
type FieldseekerServicerequestServicerequestpriorityEnum string
func (e FieldseekerServicerequestServicerequestpriorityEnum) String() string {
return string(e)
}
func (e FieldseekerServicerequestServicerequestpriorityEnum) Valid() bool {
switch e {
case FieldseekerServicerequestServicerequestpriorityEnumLow,
FieldseekerServicerequestServicerequestpriorityEnumMedium,
FieldseekerServicerequestServicerequestpriorityEnumHigh,
FieldseekerServicerequestServicerequestpriorityEnumFollowUpVisit,
FieldseekerServicerequestServicerequestpriorityEnumHTCResponse,
FieldseekerServicerequestServicerequestpriorityEnumDiseaseActivityResponse:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerServicerequestServicerequestpriorityEnum) All() []FieldseekerServicerequestServicerequestpriorityEnum {
return AllFieldseekerServicerequestServicerequestpriorityEnum()
}
func (e FieldseekerServicerequestServicerequestpriorityEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestpriorityEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerServicerequestServicerequestpriorityEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestpriorityEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerServicerequestServicerequestpriorityEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerServicerequestServicerequestpriorityEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerServicerequestServicerequestpriorityEnum(x)
case []byte:
*e = FieldseekerServicerequestServicerequestpriorityEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerServicerequestServicerequestpriorityEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerServicerequestServicerequestpriorityEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerServicerequestServicerequestregionEnum
const (
FieldseekerServicerequestServicerequestregionEnumFL FieldseekerServicerequestServicerequestregionEnum = "FL"
FieldseekerServicerequestServicerequestregionEnumID FieldseekerServicerequestServicerequestregionEnum = "ID"
)
func AllFieldseekerServicerequestServicerequestregionEnum() []FieldseekerServicerequestServicerequestregionEnum {
return []FieldseekerServicerequestServicerequestregionEnum{
FieldseekerServicerequestServicerequestregionEnumFL,
FieldseekerServicerequestServicerequestregionEnumID,
}
}
type FieldseekerServicerequestServicerequestregionEnum string
func (e FieldseekerServicerequestServicerequestregionEnum) String() string {
return string(e)
}
func (e FieldseekerServicerequestServicerequestregionEnum) Valid() bool {
switch e {
case FieldseekerServicerequestServicerequestregionEnumFL,
FieldseekerServicerequestServicerequestregionEnumID:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerServicerequestServicerequestregionEnum) All() []FieldseekerServicerequestServicerequestregionEnum {
return AllFieldseekerServicerequestServicerequestregionEnum()
}
func (e FieldseekerServicerequestServicerequestregionEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestregionEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerServicerequestServicerequestregionEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestregionEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerServicerequestServicerequestregionEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerServicerequestServicerequestregionEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerServicerequestServicerequestregionEnum(x)
case []byte:
*e = FieldseekerServicerequestServicerequestregionEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerServicerequestServicerequestregionEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerServicerequestServicerequestregionEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerServicerequestServicerequestrejectedreasonEnum
const (
FieldseekerServicerequestServicerequestrejectedreasonEnumDistance FieldseekerServicerequestServicerequestrejectedreasonEnum = "Distance"
FieldseekerServicerequestServicerequestrejectedreasonEnumWorkload FieldseekerServicerequestServicerequestrejectedreasonEnum = "Workload"
)
func AllFieldseekerServicerequestServicerequestrejectedreasonEnum() []FieldseekerServicerequestServicerequestrejectedreasonEnum {
return []FieldseekerServicerequestServicerequestrejectedreasonEnum{
FieldseekerServicerequestServicerequestrejectedreasonEnumDistance,
FieldseekerServicerequestServicerequestrejectedreasonEnumWorkload,
}
}
type FieldseekerServicerequestServicerequestrejectedreasonEnum string
func (e FieldseekerServicerequestServicerequestrejectedreasonEnum) String() string {
return string(e)
}
func (e FieldseekerServicerequestServicerequestrejectedreasonEnum) Valid() bool {
switch e {
case FieldseekerServicerequestServicerequestrejectedreasonEnumDistance,
FieldseekerServicerequestServicerequestrejectedreasonEnumWorkload:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerServicerequestServicerequestrejectedreasonEnum) All() []FieldseekerServicerequestServicerequestrejectedreasonEnum {
return AllFieldseekerServicerequestServicerequestrejectedreasonEnum()
}
func (e FieldseekerServicerequestServicerequestrejectedreasonEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestrejectedreasonEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerServicerequestServicerequestrejectedreasonEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestrejectedreasonEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerServicerequestServicerequestrejectedreasonEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerServicerequestServicerequestrejectedreasonEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerServicerequestServicerequestrejectedreasonEnum(x)
case []byte:
*e = FieldseekerServicerequestServicerequestrejectedreasonEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerServicerequestServicerequestrejectedreasonEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerServicerequestServicerequestrejectedreasonEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerServicerequestServicerequestsourceEnum
const (
FieldseekerServicerequestServicerequestsourceEnumPhone FieldseekerServicerequestServicerequestsourceEnum = "Phone"
FieldseekerServicerequestServicerequestsourceEnumEmail FieldseekerServicerequestServicerequestsourceEnum = "Email"
FieldseekerServicerequestServicerequestsourceEnumWebsite FieldseekerServicerequestServicerequestsourceEnum = "Website"
FieldseekerServicerequestServicerequestsourceEnumDropIn FieldseekerServicerequestServicerequestsourceEnum = "Drop-in"
FieldseekerServicerequestServicerequestsourceEnum2025Pools FieldseekerServicerequestServicerequestsourceEnum = "2025_pools"
)
func AllFieldseekerServicerequestServicerequestsourceEnum() []FieldseekerServicerequestServicerequestsourceEnum {
return []FieldseekerServicerequestServicerequestsourceEnum{
FieldseekerServicerequestServicerequestsourceEnumPhone,
FieldseekerServicerequestServicerequestsourceEnumEmail,
FieldseekerServicerequestServicerequestsourceEnumWebsite,
FieldseekerServicerequestServicerequestsourceEnumDropIn,
FieldseekerServicerequestServicerequestsourceEnum2025Pools,
}
}
type FieldseekerServicerequestServicerequestsourceEnum string
func (e FieldseekerServicerequestServicerequestsourceEnum) String() string {
return string(e)
}
func (e FieldseekerServicerequestServicerequestsourceEnum) Valid() bool {
switch e {
case FieldseekerServicerequestServicerequestsourceEnumPhone,
FieldseekerServicerequestServicerequestsourceEnumEmail,
FieldseekerServicerequestServicerequestsourceEnumWebsite,
FieldseekerServicerequestServicerequestsourceEnumDropIn,
FieldseekerServicerequestServicerequestsourceEnum2025Pools:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerServicerequestServicerequestsourceEnum) All() []FieldseekerServicerequestServicerequestsourceEnum {
return AllFieldseekerServicerequestServicerequestsourceEnum()
}
func (e FieldseekerServicerequestServicerequestsourceEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestsourceEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerServicerequestServicerequestsourceEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequestsourceEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerServicerequestServicerequestsourceEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerServicerequestServicerequestsourceEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerServicerequestServicerequestsourceEnum(x)
case []byte:
*e = FieldseekerServicerequestServicerequestsourceEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerServicerequestServicerequestsourceEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerServicerequestServicerequestsourceEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerServicerequestServicerequeststatusEnum
const (
FieldseekerServicerequestServicerequeststatusEnumAssigned FieldseekerServicerequestServicerequeststatusEnum = "Assigned"
FieldseekerServicerequestServicerequeststatusEnumClosed FieldseekerServicerequestServicerequeststatusEnum = "Closed"
FieldseekerServicerequestServicerequeststatusEnumFieldrectified FieldseekerServicerequestServicerequeststatusEnum = "FieldRectified"
FieldseekerServicerequestServicerequeststatusEnumOpen FieldseekerServicerequestServicerequeststatusEnum = "Open"
FieldseekerServicerequestServicerequeststatusEnumRejected FieldseekerServicerequestServicerequeststatusEnum = "Rejected"
FieldseekerServicerequestServicerequeststatusEnumUnverified FieldseekerServicerequestServicerequeststatusEnum = "Unverified"
FieldseekerServicerequestServicerequeststatusEnumAccepted FieldseekerServicerequestServicerequeststatusEnum = "Accepted"
)
func AllFieldseekerServicerequestServicerequeststatusEnum() []FieldseekerServicerequestServicerequeststatusEnum {
return []FieldseekerServicerequestServicerequeststatusEnum{
FieldseekerServicerequestServicerequeststatusEnumAssigned,
FieldseekerServicerequestServicerequeststatusEnumClosed,
FieldseekerServicerequestServicerequeststatusEnumFieldrectified,
FieldseekerServicerequestServicerequeststatusEnumOpen,
FieldseekerServicerequestServicerequeststatusEnumRejected,
FieldseekerServicerequestServicerequeststatusEnumUnverified,
FieldseekerServicerequestServicerequeststatusEnumAccepted,
}
}
type FieldseekerServicerequestServicerequeststatusEnum string
func (e FieldseekerServicerequestServicerequeststatusEnum) String() string {
return string(e)
}
func (e FieldseekerServicerequestServicerequeststatusEnum) Valid() bool {
switch e {
case FieldseekerServicerequestServicerequeststatusEnumAssigned,
FieldseekerServicerequestServicerequeststatusEnumClosed,
FieldseekerServicerequestServicerequeststatusEnumFieldrectified,
FieldseekerServicerequestServicerequeststatusEnumOpen,
FieldseekerServicerequestServicerequeststatusEnumRejected,
FieldseekerServicerequestServicerequeststatusEnumUnverified,
FieldseekerServicerequestServicerequeststatusEnumAccepted:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerServicerequestServicerequeststatusEnum) All() []FieldseekerServicerequestServicerequeststatusEnum {
return AllFieldseekerServicerequestServicerequeststatusEnum()
}
func (e FieldseekerServicerequestServicerequeststatusEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequeststatusEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerServicerequestServicerequeststatusEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequeststatusEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerServicerequestServicerequeststatusEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerServicerequestServicerequeststatusEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerServicerequestServicerequeststatusEnum(x)
case []byte:
*e = FieldseekerServicerequestServicerequeststatusEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerServicerequestServicerequeststatusEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerServicerequestServicerequeststatusEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerServicerequestServicerequesttargetEnum
const (
FieldseekerServicerequestServicerequesttargetEnumMosquitofish FieldseekerServicerequestServicerequesttargetEnum = "mosquitofish"
FieldseekerServicerequestServicerequesttargetEnumNeglectedPoolOrSpa FieldseekerServicerequestServicerequesttargetEnum = "neglected pool or spa"
FieldseekerServicerequestServicerequesttargetEnumStandingWater FieldseekerServicerequestServicerequesttargetEnum = "standing water"
FieldseekerServicerequestServicerequesttargetEnumMosquitoPresence FieldseekerServicerequestServicerequesttargetEnum = "mosquito presence"
FieldseekerServicerequestServicerequesttargetEnumBitingMosquitoes FieldseekerServicerequestServicerequesttargetEnum = "biting mosquitoes"
FieldseekerServicerequestServicerequesttargetEnumEvent FieldseekerServicerequestServicerequesttargetEnum = "event"
FieldseekerServicerequestServicerequesttargetEnumFish FieldseekerServicerequestServicerequesttargetEnum = "fish"
FieldseekerServicerequestServicerequesttargetEnumMosquito FieldseekerServicerequestServicerequesttargetEnum = "mosquito"
FieldseekerServicerequestServicerequesttargetEnumSource FieldseekerServicerequestServicerequesttargetEnum = "source"
FieldseekerServicerequestServicerequesttargetEnumBird FieldseekerServicerequestServicerequesttargetEnum = "bird"
)
func AllFieldseekerServicerequestServicerequesttargetEnum() []FieldseekerServicerequestServicerequesttargetEnum {
return []FieldseekerServicerequestServicerequesttargetEnum{
FieldseekerServicerequestServicerequesttargetEnumMosquitofish,
FieldseekerServicerequestServicerequesttargetEnumNeglectedPoolOrSpa,
FieldseekerServicerequestServicerequesttargetEnumStandingWater,
FieldseekerServicerequestServicerequesttargetEnumMosquitoPresence,
FieldseekerServicerequestServicerequesttargetEnumBitingMosquitoes,
FieldseekerServicerequestServicerequesttargetEnumEvent,
FieldseekerServicerequestServicerequesttargetEnumFish,
FieldseekerServicerequestServicerequesttargetEnumMosquito,
FieldseekerServicerequestServicerequesttargetEnumSource,
FieldseekerServicerequestServicerequesttargetEnumBird,
}
}
type FieldseekerServicerequestServicerequesttargetEnum string
func (e FieldseekerServicerequestServicerequesttargetEnum) String() string {
return string(e)
}
func (e FieldseekerServicerequestServicerequesttargetEnum) Valid() bool {
switch e {
case FieldseekerServicerequestServicerequesttargetEnumMosquitofish,
FieldseekerServicerequestServicerequesttargetEnumNeglectedPoolOrSpa,
FieldseekerServicerequestServicerequesttargetEnumStandingWater,
FieldseekerServicerequestServicerequesttargetEnumMosquitoPresence,
FieldseekerServicerequestServicerequesttargetEnumBitingMosquitoes,
FieldseekerServicerequestServicerequesttargetEnumEvent,
FieldseekerServicerequestServicerequesttargetEnumFish,
FieldseekerServicerequestServicerequesttargetEnumMosquito,
FieldseekerServicerequestServicerequesttargetEnumSource,
FieldseekerServicerequestServicerequesttargetEnumBird:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerServicerequestServicerequesttargetEnum) All() []FieldseekerServicerequestServicerequesttargetEnum {
return AllFieldseekerServicerequestServicerequesttargetEnum()
}
func (e FieldseekerServicerequestServicerequesttargetEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequesttargetEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerServicerequestServicerequesttargetEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerServicerequestServicerequesttargetEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerServicerequestServicerequesttargetEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerServicerequestServicerequesttargetEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerServicerequestServicerequesttargetEnum(x)
case []byte:
*e = FieldseekerServicerequestServicerequesttargetEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerServicerequestServicerequesttargetEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerServicerequestServicerequesttargetEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerSpeciesabundanceNotinuitFEnum
const (
FieldseekerSpeciesabundanceNotinuitFEnum1 FieldseekerSpeciesabundanceNotinuitFEnum = "1"
FieldseekerSpeciesabundanceNotinuitFEnum0 FieldseekerSpeciesabundanceNotinuitFEnum = "0"
)
func AllFieldseekerSpeciesabundanceNotinuitFEnum() []FieldseekerSpeciesabundanceNotinuitFEnum {
return []FieldseekerSpeciesabundanceNotinuitFEnum{
FieldseekerSpeciesabundanceNotinuitFEnum1,
FieldseekerSpeciesabundanceNotinuitFEnum0,
}
}
type FieldseekerSpeciesabundanceNotinuitFEnum string
func (e FieldseekerSpeciesabundanceNotinuitFEnum) String() string {
return string(e)
}
func (e FieldseekerSpeciesabundanceNotinuitFEnum) Valid() bool {
switch e {
case FieldseekerSpeciesabundanceNotinuitFEnum1,
FieldseekerSpeciesabundanceNotinuitFEnum0:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerSpeciesabundanceNotinuitFEnum) All() []FieldseekerSpeciesabundanceNotinuitFEnum {
return AllFieldseekerSpeciesabundanceNotinuitFEnum()
}
func (e FieldseekerSpeciesabundanceNotinuitFEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSpeciesabundanceNotinuitFEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerSpeciesabundanceNotinuitFEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerSpeciesabundanceNotinuitFEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerSpeciesabundanceNotinuitFEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerSpeciesabundanceNotinuitFEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerSpeciesabundanceNotinuitFEnum(x)
case []byte:
*e = FieldseekerSpeciesabundanceNotinuitFEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerSpeciesabundanceNotinuitFEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerSpeciesabundanceNotinuitFEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerStormdrainStormdrainsymbologyEnum
const (
FieldseekerStormdrainStormdrainsymbologyEnumDry FieldseekerStormdrainStormdrainsymbologyEnum = "Dry"
FieldseekerStormdrainStormdrainsymbologyEnumNeedsTreatment FieldseekerStormdrainStormdrainsymbologyEnum = "Needs Treatment"
FieldseekerStormdrainStormdrainsymbologyEnumTreated FieldseekerStormdrainStormdrainsymbologyEnum = "Treated"
)
func AllFieldseekerStormdrainStormdrainsymbologyEnum() []FieldseekerStormdrainStormdrainsymbologyEnum {
return []FieldseekerStormdrainStormdrainsymbologyEnum{
FieldseekerStormdrainStormdrainsymbologyEnumDry,
FieldseekerStormdrainStormdrainsymbologyEnumNeedsTreatment,
FieldseekerStormdrainStormdrainsymbologyEnumTreated,
}
}
type FieldseekerStormdrainStormdrainsymbologyEnum string
func (e FieldseekerStormdrainStormdrainsymbologyEnum) String() string {
return string(e)
}
func (e FieldseekerStormdrainStormdrainsymbologyEnum) Valid() bool {
switch e {
case FieldseekerStormdrainStormdrainsymbologyEnumDry,
FieldseekerStormdrainStormdrainsymbologyEnumNeedsTreatment,
FieldseekerStormdrainStormdrainsymbologyEnumTreated:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerStormdrainStormdrainsymbologyEnum) All() []FieldseekerStormdrainStormdrainsymbologyEnum {
return AllFieldseekerStormdrainStormdrainsymbologyEnum()
}
func (e FieldseekerStormdrainStormdrainsymbologyEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerStormdrainStormdrainsymbologyEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerStormdrainStormdrainsymbologyEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerStormdrainStormdrainsymbologyEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerStormdrainStormdrainsymbologyEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerStormdrainStormdrainsymbologyEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerStormdrainStormdrainsymbologyEnum(x)
case []byte:
*e = FieldseekerStormdrainStormdrainsymbologyEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerStormdrainStormdrainsymbologyEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerStormdrainStormdrainsymbologyEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu
const (
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuRoutineInspection FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "Routine inspection"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuPreTreatment FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "Pre-treatment"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuMaintenance FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "Maintenance"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuUlv FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "ULV"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuBarrier FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "BARRIER"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuLogin FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "LOGIN"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuTreatsd FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "TREATSD"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuSD FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "SD"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuSitevisit FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "SITEVISIT"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuOnline FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "ONLINE"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuSync FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "SYNC"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuCreatesr FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "CREATESR"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuLC FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "LC"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuAcceptsr FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "ACCEPTSR"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuPoint FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "POINT"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuDownload FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "DOWNLOAD"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuCompletesr FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "COMPLETESR"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuPolygon FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "POLYGON"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuTrap FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "TRAP"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuSample FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "SAMPLE"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuQa FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "QA"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuPta FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "PTA"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuFieldscouting FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "FIELDSCOUTING"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuOffline FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "OFFLINE"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuLine FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "LINE"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuTraplocation FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "TRAPLOCATION"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuSamplelocation FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "SAMPLELOCATION"
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuLclocation FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu = "LCLOCATION"
)
func AllFieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu() []FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu {
return []FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu{
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuRoutineInspection,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuPreTreatment,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuMaintenance,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuUlv,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuBarrier,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuLogin,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuTreatsd,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuSD,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuSitevisit,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuOnline,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuSync,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuCreatesr,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuLC,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuAcceptsr,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuPoint,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuDownload,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuCompletesr,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuPolygon,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuTrap,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuSample,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuQa,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuPta,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuFieldscouting,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuOffline,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuLine,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuTraplocation,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuSamplelocation,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuLclocation,
}
}
type FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu string
func (e FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu) String() string {
return string(e)
}
func (e FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu) Valid() bool {
switch e {
case FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuRoutineInspection,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuPreTreatment,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuMaintenance,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuUlv,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuBarrier,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuLogin,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuTreatsd,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuSD,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuSitevisit,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuOnline,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuSync,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuCreatesr,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuLC,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuAcceptsr,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuPoint,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuDownload,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuCompletesr,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuPolygon,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuTrap,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuSample,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuQa,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuPta,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuFieldscouting,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuOffline,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuLine,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuTraplocation,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuSamplelocation,
FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366EnuLclocation:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu) All() []FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu {
return AllFieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu()
}
func (e FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu(x)
case []byte:
*e = FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTimecardTimecardActivity451e67260c084304a35457170dc13366Enu value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTimecardTimecardequipmenttypeEnum
const (
FieldseekerTimecardTimecardequipmenttypeEnumSpreader FieldseekerTimecardTimecardequipmenttypeEnum = "Spreader"
FieldseekerTimecardTimecardequipmenttypeEnumAtv FieldseekerTimecardTimecardequipmenttypeEnum = "ATV"
FieldseekerTimecardTimecardequipmenttypeEnumTruck FieldseekerTimecardTimecardequipmenttypeEnum = "Truck"
)
func AllFieldseekerTimecardTimecardequipmenttypeEnum() []FieldseekerTimecardTimecardequipmenttypeEnum {
return []FieldseekerTimecardTimecardequipmenttypeEnum{
FieldseekerTimecardTimecardequipmenttypeEnumSpreader,
FieldseekerTimecardTimecardequipmenttypeEnumAtv,
FieldseekerTimecardTimecardequipmenttypeEnumTruck,
}
}
type FieldseekerTimecardTimecardequipmenttypeEnum string
func (e FieldseekerTimecardTimecardequipmenttypeEnum) String() string {
return string(e)
}
func (e FieldseekerTimecardTimecardequipmenttypeEnum) Valid() bool {
switch e {
case FieldseekerTimecardTimecardequipmenttypeEnumSpreader,
FieldseekerTimecardTimecardequipmenttypeEnumAtv,
FieldseekerTimecardTimecardequipmenttypeEnumTruck:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTimecardTimecardequipmenttypeEnum) All() []FieldseekerTimecardTimecardequipmenttypeEnum {
return AllFieldseekerTimecardTimecardequipmenttypeEnum()
}
func (e FieldseekerTimecardTimecardequipmenttypeEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTimecardTimecardequipmenttypeEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTimecardTimecardequipmenttypeEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTimecardTimecardequipmenttypeEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTimecardTimecardequipmenttypeEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTimecardTimecardequipmenttypeEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTimecardTimecardequipmenttypeEnum(x)
case []byte:
*e = FieldseekerTimecardTimecardequipmenttypeEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTimecardTimecardequipmenttypeEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTimecardTimecardequipmenttypeEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTrapdataMosquitositeconditionEnum
const (
FieldseekerTrapdataMosquitositeconditionEnumDry FieldseekerTrapdataMosquitositeconditionEnum = "Dry"
FieldseekerTrapdataMosquitositeconditionEnumClean FieldseekerTrapdataMosquitositeconditionEnum = "Clean"
FieldseekerTrapdataMosquitositeconditionEnumFull FieldseekerTrapdataMosquitositeconditionEnum = "Full"
FieldseekerTrapdataMosquitositeconditionEnumLow FieldseekerTrapdataMosquitositeconditionEnum = "Low"
)
func AllFieldseekerTrapdataMosquitositeconditionEnum() []FieldseekerTrapdataMosquitositeconditionEnum {
return []FieldseekerTrapdataMosquitositeconditionEnum{
FieldseekerTrapdataMosquitositeconditionEnumDry,
FieldseekerTrapdataMosquitositeconditionEnumClean,
FieldseekerTrapdataMosquitositeconditionEnumFull,
FieldseekerTrapdataMosquitositeconditionEnumLow,
}
}
type FieldseekerTrapdataMosquitositeconditionEnum string
func (e FieldseekerTrapdataMosquitositeconditionEnum) String() string {
return string(e)
}
func (e FieldseekerTrapdataMosquitositeconditionEnum) Valid() bool {
switch e {
case FieldseekerTrapdataMosquitositeconditionEnumDry,
FieldseekerTrapdataMosquitositeconditionEnumClean,
FieldseekerTrapdataMosquitositeconditionEnumFull,
FieldseekerTrapdataMosquitositeconditionEnumLow:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTrapdataMosquitositeconditionEnum) All() []FieldseekerTrapdataMosquitositeconditionEnum {
return AllFieldseekerTrapdataMosquitositeconditionEnum()
}
func (e FieldseekerTrapdataMosquitositeconditionEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTrapdataMosquitositeconditionEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTrapdataMosquitositeconditionEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTrapdataMosquitositeconditionEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTrapdataMosquitositeconditionEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTrapdataMosquitositeconditionEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTrapdataMosquitositeconditionEnum(x)
case []byte:
*e = FieldseekerTrapdataMosquitositeconditionEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTrapdataMosquitositeconditionEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTrapdataMosquitositeconditionEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTrapdataMosquitotrapconditionEnum
const (
FieldseekerTrapdataMosquitotrapconditionEnumDamaged FieldseekerTrapdataMosquitotrapconditionEnum = "Damaged"
FieldseekerTrapdataMosquitotrapconditionEnumMissing FieldseekerTrapdataMosquitotrapconditionEnum = "Missing"
FieldseekerTrapdataMosquitotrapconditionEnumFanOff FieldseekerTrapdataMosquitotrapconditionEnum = "Fan Off"
FieldseekerTrapdataMosquitotrapconditionEnumFanSlow FieldseekerTrapdataMosquitotrapconditionEnum = "Fan Slow"
)
func AllFieldseekerTrapdataMosquitotrapconditionEnum() []FieldseekerTrapdataMosquitotrapconditionEnum {
return []FieldseekerTrapdataMosquitotrapconditionEnum{
FieldseekerTrapdataMosquitotrapconditionEnumDamaged,
FieldseekerTrapdataMosquitotrapconditionEnumMissing,
FieldseekerTrapdataMosquitotrapconditionEnumFanOff,
FieldseekerTrapdataMosquitotrapconditionEnumFanSlow,
}
}
type FieldseekerTrapdataMosquitotrapconditionEnum string
func (e FieldseekerTrapdataMosquitotrapconditionEnum) String() string {
return string(e)
}
func (e FieldseekerTrapdataMosquitotrapconditionEnum) Valid() bool {
switch e {
case FieldseekerTrapdataMosquitotrapconditionEnumDamaged,
FieldseekerTrapdataMosquitotrapconditionEnumMissing,
FieldseekerTrapdataMosquitotrapconditionEnumFanOff,
FieldseekerTrapdataMosquitotrapconditionEnumFanSlow:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTrapdataMosquitotrapconditionEnum) All() []FieldseekerTrapdataMosquitotrapconditionEnum {
return AllFieldseekerTrapdataMosquitotrapconditionEnum()
}
func (e FieldseekerTrapdataMosquitotrapconditionEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTrapdataMosquitotrapconditionEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTrapdataMosquitotrapconditionEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTrapdataMosquitotrapconditionEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTrapdataMosquitotrapconditionEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTrapdataMosquitotrapconditionEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTrapdataMosquitotrapconditionEnum(x)
case []byte:
*e = FieldseekerTrapdataMosquitotrapconditionEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTrapdataMosquitotrapconditionEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTrapdataMosquitotrapconditionEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTrapdataMosquitotraptypeEnum
const (
FieldseekerTrapdataMosquitotraptypeEnumGRVD FieldseekerTrapdataMosquitotraptypeEnum = "GRVD"
FieldseekerTrapdataMosquitotraptypeEnumBgsent FieldseekerTrapdataMosquitotraptypeEnum = "BGSENT"
FieldseekerTrapdataMosquitotraptypeEnumCo2 FieldseekerTrapdataMosquitotraptypeEnum = "CO2"
)
func AllFieldseekerTrapdataMosquitotraptypeEnum() []FieldseekerTrapdataMosquitotraptypeEnum {
return []FieldseekerTrapdataMosquitotraptypeEnum{
FieldseekerTrapdataMosquitotraptypeEnumGRVD,
FieldseekerTrapdataMosquitotraptypeEnumBgsent,
FieldseekerTrapdataMosquitotraptypeEnumCo2,
}
}
type FieldseekerTrapdataMosquitotraptypeEnum string
func (e FieldseekerTrapdataMosquitotraptypeEnum) String() string {
return string(e)
}
func (e FieldseekerTrapdataMosquitotraptypeEnum) Valid() bool {
switch e {
case FieldseekerTrapdataMosquitotraptypeEnumGRVD,
FieldseekerTrapdataMosquitotraptypeEnumBgsent,
FieldseekerTrapdataMosquitotraptypeEnumCo2:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTrapdataMosquitotraptypeEnum) All() []FieldseekerTrapdataMosquitotraptypeEnum {
return AllFieldseekerTrapdataMosquitotraptypeEnum()
}
func (e FieldseekerTrapdataMosquitotraptypeEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTrapdataMosquitotraptypeEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTrapdataMosquitotraptypeEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTrapdataMosquitotraptypeEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTrapdataMosquitotraptypeEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTrapdataMosquitotraptypeEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTrapdataMosquitotraptypeEnum(x)
case []byte:
*e = FieldseekerTrapdataMosquitotraptypeEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTrapdataMosquitotraptypeEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTrapdataMosquitotraptypeEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTrapdataNotinuitFEnum
const (
FieldseekerTrapdataNotinuitFEnum1 FieldseekerTrapdataNotinuitFEnum = "1"
FieldseekerTrapdataNotinuitFEnum0 FieldseekerTrapdataNotinuitFEnum = "0"
)
func AllFieldseekerTrapdataNotinuitFEnum() []FieldseekerTrapdataNotinuitFEnum {
return []FieldseekerTrapdataNotinuitFEnum{
FieldseekerTrapdataNotinuitFEnum1,
FieldseekerTrapdataNotinuitFEnum0,
}
}
type FieldseekerTrapdataNotinuitFEnum string
func (e FieldseekerTrapdataNotinuitFEnum) String() string {
return string(e)
}
func (e FieldseekerTrapdataNotinuitFEnum) Valid() bool {
switch e {
case FieldseekerTrapdataNotinuitFEnum1,
FieldseekerTrapdataNotinuitFEnum0:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTrapdataNotinuitFEnum) All() []FieldseekerTrapdataNotinuitFEnum {
return AllFieldseekerTrapdataNotinuitFEnum()
}
func (e FieldseekerTrapdataNotinuitFEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTrapdataNotinuitFEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTrapdataNotinuitFEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTrapdataNotinuitFEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTrapdataNotinuitFEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTrapdataNotinuitFEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTrapdataNotinuitFEnum(x)
case []byte:
*e = FieldseekerTrapdataNotinuitFEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTrapdataNotinuitFEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTrapdataNotinuitFEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTrapdataNotinuitrapactivitytypeEnum
const (
FieldseekerTrapdataNotinuitrapactivitytypeEnumS FieldseekerTrapdataNotinuitrapactivitytypeEnum = "S"
FieldseekerTrapdataNotinuitrapactivitytypeEnumR FieldseekerTrapdataNotinuitrapactivitytypeEnum = "R"
)
func AllFieldseekerTrapdataNotinuitrapactivitytypeEnum() []FieldseekerTrapdataNotinuitrapactivitytypeEnum {
return []FieldseekerTrapdataNotinuitrapactivitytypeEnum{
FieldseekerTrapdataNotinuitrapactivitytypeEnumS,
FieldseekerTrapdataNotinuitrapactivitytypeEnumR,
}
}
type FieldseekerTrapdataNotinuitrapactivitytypeEnum string
func (e FieldseekerTrapdataNotinuitrapactivitytypeEnum) String() string {
return string(e)
}
func (e FieldseekerTrapdataNotinuitrapactivitytypeEnum) Valid() bool {
switch e {
case FieldseekerTrapdataNotinuitrapactivitytypeEnumS,
FieldseekerTrapdataNotinuitrapactivitytypeEnumR:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTrapdataNotinuitrapactivitytypeEnum) All() []FieldseekerTrapdataNotinuitrapactivitytypeEnum {
return AllFieldseekerTrapdataNotinuitrapactivitytypeEnum()
}
func (e FieldseekerTrapdataNotinuitrapactivitytypeEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTrapdataNotinuitrapactivitytypeEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTrapdataNotinuitrapactivitytypeEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTrapdataNotinuitrapactivitytypeEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTrapdataNotinuitrapactivitytypeEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTrapdataNotinuitrapactivitytypeEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTrapdataNotinuitrapactivitytypeEnum(x)
case []byte:
*e = FieldseekerTrapdataNotinuitrapactivitytypeEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTrapdataNotinuitrapactivitytypeEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTrapdataNotinuitrapactivitytypeEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu
const (
FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnuCo2U28dryIceU29 FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu = "CO2 (Dry Ice)"
FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnuCo2U28sugarYeastU29 FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu = "CO2 (Sugar Yeast)"
FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnuBGLure FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu = "BG-Lure"
FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnuGravidWater FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu = "Gravid Water"
)
func AllFieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu() []FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu {
return []FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu{
FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnuCo2U28dryIceU29,
FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnuCo2U28sugarYeastU29,
FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnuBGLure,
FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnuGravidWater,
}
}
type FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu string
func (e FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu) String() string {
return string(e)
}
func (e FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu) Valid() bool {
switch e {
case FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnuCo2U28dryIceU29,
FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnuCo2U28sugarYeastU29,
FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnuBGLure,
FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnuGravidWater:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu) All() []FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu {
return AllFieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu()
}
func (e FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu(x)
case []byte:
*e = FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTrapdataTrapdataLure25fe542f077F4254868176e8f436354bEnu value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166
const (
FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166E FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166 = "E"
FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166N FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166 = "N"
FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166Ne FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166 = "NE"
FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166NW FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166 = "NW"
FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166S FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166 = "S"
FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166Se FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166 = "SE"
FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166SW FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166 = "SW"
FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166W FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166 = "W"
)
func AllFieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166() []FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166 {
return []FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166{
FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166E,
FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166N,
FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166Ne,
FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166NW,
FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166S,
FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166Se,
FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166SW,
FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166W,
}
}
type FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166 string
func (e FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166) String() string {
return string(e)
}
func (e FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166) Valid() bool {
switch e {
case FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166E,
FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166N,
FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166Ne,
FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166NW,
FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166S,
FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166Se,
FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166SW,
FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166W:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166) All() []FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166 {
return AllFieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166()
}
func (e FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166(x)
case []byte:
*e = FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTrapdataTrapdataWinddirC1a31e05D0B94B228800Be127bb3f166 value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTraplocationNotinuitFEnum
const (
FieldseekerTraplocationNotinuitFEnum1 FieldseekerTraplocationNotinuitFEnum = "1"
FieldseekerTraplocationNotinuitFEnum0 FieldseekerTraplocationNotinuitFEnum = "0"
)
func AllFieldseekerTraplocationNotinuitFEnum() []FieldseekerTraplocationNotinuitFEnum {
return []FieldseekerTraplocationNotinuitFEnum{
FieldseekerTraplocationNotinuitFEnum1,
FieldseekerTraplocationNotinuitFEnum0,
}
}
type FieldseekerTraplocationNotinuitFEnum string
func (e FieldseekerTraplocationNotinuitFEnum) String() string {
return string(e)
}
func (e FieldseekerTraplocationNotinuitFEnum) Valid() bool {
switch e {
case FieldseekerTraplocationNotinuitFEnum1,
FieldseekerTraplocationNotinuitFEnum0:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTraplocationNotinuitFEnum) All() []FieldseekerTraplocationNotinuitFEnum {
return AllFieldseekerTraplocationNotinuitFEnum()
}
func (e FieldseekerTraplocationNotinuitFEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTraplocationNotinuitFEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTraplocationNotinuitFEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTraplocationNotinuitFEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTraplocationNotinuitFEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTraplocationNotinuitFEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTraplocationNotinuitFEnum(x)
case []byte:
*e = FieldseekerTraplocationNotinuitFEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTraplocationNotinuitFEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTraplocationNotinuitFEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0
const (
FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0HomeownerPreference FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0 = "homeowner preference"
FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0NoLongerNeeded FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0 = "no longer needed"
)
func AllFieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0() []FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0 {
return []FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0{
FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0HomeownerPreference,
FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0NoLongerNeeded,
}
}
type FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0 string
func (e FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0) String() string {
return string(e)
}
func (e FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0) Valid() bool {
switch e {
case FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0HomeownerPreference,
FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0NoLongerNeeded:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0) All() []FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0 {
return AllFieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0()
}
func (e FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0(x)
case []byte:
*e = FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTraplocationTraplocationAccessdesc154CBD1045244e3a8ca0F0 value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993e
const (
FieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993eTrap FieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993e = "Trap"
)
func AllFieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993e() []FieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993e {
return []FieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993e{
FieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993eTrap,
}
}
type FieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993e string
func (e FieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993e) String() string {
return string(e)
}
func (e FieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993e) Valid() bool {
switch e {
case FieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993eTrap:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993e) All() []FieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993e {
return AllFieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993e()
}
func (e FieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993e) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993e) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993e) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993e) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993e) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993e) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993e(x)
case []byte:
*e = FieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993e(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993e")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTraplocationTraplocationHabitat5c349680f5ff40b1aeca88c17993e value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B
const (
FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959BLow FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B = "Low"
FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959BMedium FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B = "Medium"
FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959BHigh FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B = "High"
FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959BNone FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B = "None"
FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959BProject FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B = "Project"
FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959BFixed FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B = "Fixed"
FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959BResponse FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B = "Response "
)
func AllFieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B() []FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B {
return []FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B{
FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959BLow,
FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959BMedium,
FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959BHigh,
FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959BNone,
FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959BProject,
FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959BFixed,
FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959BResponse,
}
}
type FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B string
func (e FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B) String() string {
return string(e)
}
func (e FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B) Valid() bool {
switch e {
case FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959BLow,
FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959BMedium,
FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959BHigh,
FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959BNone,
FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959BProject,
FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959BFixed,
FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959BResponse:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B) All() []FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B {
return AllFieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B()
}
func (e FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B(x)
case []byte:
*e = FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTraplocationTraplocationPriority680FB011063B41D59F39271C959B value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2
const (
FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2FixedTrapping FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2 = "Fixed Trapping"
FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2ResponseTrapping FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2 = "Response Trapping"
FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2ServiceRequest FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2 = "Service Request"
FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2ProjectTrap FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2 = "Project Trap"
)
func AllFieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2() []FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2 {
return []FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2{
FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2FixedTrapping,
FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2ResponseTrapping,
FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2ServiceRequest,
FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2ProjectTrap,
}
}
type FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2 string
func (e FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2) String() string {
return string(e)
}
func (e FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2) Valid() bool {
switch e {
case FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2FixedTrapping,
FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2ResponseTrapping,
FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2ServiceRequest,
FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2ProjectTrap:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2) All() []FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2 {
return AllFieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2()
}
func (e FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2(x)
case []byte:
*e = FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTraplocationTraplocationUsetype5e0eff9231fb404c98cc53c1d49a2 value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTreatmentMosquitoactivityEnum
const (
FieldseekerTreatmentMosquitoactivityEnumRoutineInspection FieldseekerTreatmentMosquitoactivityEnum = "Routine inspection"
FieldseekerTreatmentMosquitoactivityEnumPreTreatment FieldseekerTreatmentMosquitoactivityEnum = "Pre-treatment"
FieldseekerTreatmentMosquitoactivityEnumMaintenance FieldseekerTreatmentMosquitoactivityEnum = "Maintenance"
FieldseekerTreatmentMosquitoactivityEnumUlv FieldseekerTreatmentMosquitoactivityEnum = "ULV"
FieldseekerTreatmentMosquitoactivityEnumBarrier FieldseekerTreatmentMosquitoactivityEnum = "BARRIER"
FieldseekerTreatmentMosquitoactivityEnumLogin FieldseekerTreatmentMosquitoactivityEnum = "LOGIN"
FieldseekerTreatmentMosquitoactivityEnumTreatsd FieldseekerTreatmentMosquitoactivityEnum = "TREATSD"
FieldseekerTreatmentMosquitoactivityEnumSD FieldseekerTreatmentMosquitoactivityEnum = "SD"
FieldseekerTreatmentMosquitoactivityEnumSitevisit FieldseekerTreatmentMosquitoactivityEnum = "SITEVISIT"
FieldseekerTreatmentMosquitoactivityEnumOnline FieldseekerTreatmentMosquitoactivityEnum = "ONLINE"
FieldseekerTreatmentMosquitoactivityEnumSync FieldseekerTreatmentMosquitoactivityEnum = "SYNC"
FieldseekerTreatmentMosquitoactivityEnumCreatesr FieldseekerTreatmentMosquitoactivityEnum = "CREATESR"
FieldseekerTreatmentMosquitoactivityEnumLC FieldseekerTreatmentMosquitoactivityEnum = "LC"
FieldseekerTreatmentMosquitoactivityEnumAcceptsr FieldseekerTreatmentMosquitoactivityEnum = "ACCEPTSR"
FieldseekerTreatmentMosquitoactivityEnumPoint FieldseekerTreatmentMosquitoactivityEnum = "POINT"
FieldseekerTreatmentMosquitoactivityEnumDownload FieldseekerTreatmentMosquitoactivityEnum = "DOWNLOAD"
FieldseekerTreatmentMosquitoactivityEnumCompletesr FieldseekerTreatmentMosquitoactivityEnum = "COMPLETESR"
FieldseekerTreatmentMosquitoactivityEnumPolygon FieldseekerTreatmentMosquitoactivityEnum = "POLYGON"
FieldseekerTreatmentMosquitoactivityEnumTrap FieldseekerTreatmentMosquitoactivityEnum = "TRAP"
FieldseekerTreatmentMosquitoactivityEnumSample FieldseekerTreatmentMosquitoactivityEnum = "SAMPLE"
FieldseekerTreatmentMosquitoactivityEnumQa FieldseekerTreatmentMosquitoactivityEnum = "QA"
FieldseekerTreatmentMosquitoactivityEnumPta FieldseekerTreatmentMosquitoactivityEnum = "PTA"
FieldseekerTreatmentMosquitoactivityEnumFieldscouting FieldseekerTreatmentMosquitoactivityEnum = "FIELDSCOUTING"
FieldseekerTreatmentMosquitoactivityEnumOffline FieldseekerTreatmentMosquitoactivityEnum = "OFFLINE"
FieldseekerTreatmentMosquitoactivityEnumLine FieldseekerTreatmentMosquitoactivityEnum = "LINE"
FieldseekerTreatmentMosquitoactivityEnumTraplocation FieldseekerTreatmentMosquitoactivityEnum = "TRAPLOCATION"
FieldseekerTreatmentMosquitoactivityEnumSamplelocation FieldseekerTreatmentMosquitoactivityEnum = "SAMPLELOCATION"
FieldseekerTreatmentMosquitoactivityEnumLclocation FieldseekerTreatmentMosquitoactivityEnum = "LCLOCATION"
)
func AllFieldseekerTreatmentMosquitoactivityEnum() []FieldseekerTreatmentMosquitoactivityEnum {
return []FieldseekerTreatmentMosquitoactivityEnum{
FieldseekerTreatmentMosquitoactivityEnumRoutineInspection,
FieldseekerTreatmentMosquitoactivityEnumPreTreatment,
FieldseekerTreatmentMosquitoactivityEnumMaintenance,
FieldseekerTreatmentMosquitoactivityEnumUlv,
FieldseekerTreatmentMosquitoactivityEnumBarrier,
FieldseekerTreatmentMosquitoactivityEnumLogin,
FieldseekerTreatmentMosquitoactivityEnumTreatsd,
FieldseekerTreatmentMosquitoactivityEnumSD,
FieldseekerTreatmentMosquitoactivityEnumSitevisit,
FieldseekerTreatmentMosquitoactivityEnumOnline,
FieldseekerTreatmentMosquitoactivityEnumSync,
FieldseekerTreatmentMosquitoactivityEnumCreatesr,
FieldseekerTreatmentMosquitoactivityEnumLC,
FieldseekerTreatmentMosquitoactivityEnumAcceptsr,
FieldseekerTreatmentMosquitoactivityEnumPoint,
FieldseekerTreatmentMosquitoactivityEnumDownload,
FieldseekerTreatmentMosquitoactivityEnumCompletesr,
FieldseekerTreatmentMosquitoactivityEnumPolygon,
FieldseekerTreatmentMosquitoactivityEnumTrap,
FieldseekerTreatmentMosquitoactivityEnumSample,
FieldseekerTreatmentMosquitoactivityEnumQa,
FieldseekerTreatmentMosquitoactivityEnumPta,
FieldseekerTreatmentMosquitoactivityEnumFieldscouting,
FieldseekerTreatmentMosquitoactivityEnumOffline,
FieldseekerTreatmentMosquitoactivityEnumLine,
FieldseekerTreatmentMosquitoactivityEnumTraplocation,
FieldseekerTreatmentMosquitoactivityEnumSamplelocation,
FieldseekerTreatmentMosquitoactivityEnumLclocation,
}
}
type FieldseekerTreatmentMosquitoactivityEnum string
func (e FieldseekerTreatmentMosquitoactivityEnum) String() string {
return string(e)
}
func (e FieldseekerTreatmentMosquitoactivityEnum) Valid() bool {
switch e {
case FieldseekerTreatmentMosquitoactivityEnumRoutineInspection,
FieldseekerTreatmentMosquitoactivityEnumPreTreatment,
FieldseekerTreatmentMosquitoactivityEnumMaintenance,
FieldseekerTreatmentMosquitoactivityEnumUlv,
FieldseekerTreatmentMosquitoactivityEnumBarrier,
FieldseekerTreatmentMosquitoactivityEnumLogin,
FieldseekerTreatmentMosquitoactivityEnumTreatsd,
FieldseekerTreatmentMosquitoactivityEnumSD,
FieldseekerTreatmentMosquitoactivityEnumSitevisit,
FieldseekerTreatmentMosquitoactivityEnumOnline,
FieldseekerTreatmentMosquitoactivityEnumSync,
FieldseekerTreatmentMosquitoactivityEnumCreatesr,
FieldseekerTreatmentMosquitoactivityEnumLC,
FieldseekerTreatmentMosquitoactivityEnumAcceptsr,
FieldseekerTreatmentMosquitoactivityEnumPoint,
FieldseekerTreatmentMosquitoactivityEnumDownload,
FieldseekerTreatmentMosquitoactivityEnumCompletesr,
FieldseekerTreatmentMosquitoactivityEnumPolygon,
FieldseekerTreatmentMosquitoactivityEnumTrap,
FieldseekerTreatmentMosquitoactivityEnumSample,
FieldseekerTreatmentMosquitoactivityEnumQa,
FieldseekerTreatmentMosquitoactivityEnumPta,
FieldseekerTreatmentMosquitoactivityEnumFieldscouting,
FieldseekerTreatmentMosquitoactivityEnumOffline,
FieldseekerTreatmentMosquitoactivityEnumLine,
FieldseekerTreatmentMosquitoactivityEnumTraplocation,
FieldseekerTreatmentMosquitoactivityEnumSamplelocation,
FieldseekerTreatmentMosquitoactivityEnumLclocation:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTreatmentMosquitoactivityEnum) All() []FieldseekerTreatmentMosquitoactivityEnum {
return AllFieldseekerTreatmentMosquitoactivityEnum()
}
func (e FieldseekerTreatmentMosquitoactivityEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTreatmentMosquitoactivityEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTreatmentMosquitoactivityEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTreatmentMosquitoactivityEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTreatmentMosquitoactivityEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTreatmentMosquitoactivityEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTreatmentMosquitoactivityEnum(x)
case []byte:
*e = FieldseekerTreatmentMosquitoactivityEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTreatmentMosquitoactivityEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTreatmentMosquitoactivityEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTreatmentMosquitoproductareaunitEnum
const (
FieldseekerTreatmentMosquitoproductareaunitEnumAcre FieldseekerTreatmentMosquitoproductareaunitEnum = "acre"
FieldseekerTreatmentMosquitoproductareaunitEnumSQFT FieldseekerTreatmentMosquitoproductareaunitEnum = "sq ft"
)
func AllFieldseekerTreatmentMosquitoproductareaunitEnum() []FieldseekerTreatmentMosquitoproductareaunitEnum {
return []FieldseekerTreatmentMosquitoproductareaunitEnum{
FieldseekerTreatmentMosquitoproductareaunitEnumAcre,
FieldseekerTreatmentMosquitoproductareaunitEnumSQFT,
}
}
type FieldseekerTreatmentMosquitoproductareaunitEnum string
func (e FieldseekerTreatmentMosquitoproductareaunitEnum) String() string {
return string(e)
}
func (e FieldseekerTreatmentMosquitoproductareaunitEnum) Valid() bool {
switch e {
case FieldseekerTreatmentMosquitoproductareaunitEnumAcre,
FieldseekerTreatmentMosquitoproductareaunitEnumSQFT:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTreatmentMosquitoproductareaunitEnum) All() []FieldseekerTreatmentMosquitoproductareaunitEnum {
return AllFieldseekerTreatmentMosquitoproductareaunitEnum()
}
func (e FieldseekerTreatmentMosquitoproductareaunitEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTreatmentMosquitoproductareaunitEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTreatmentMosquitoproductareaunitEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTreatmentMosquitoproductareaunitEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTreatmentMosquitoproductareaunitEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTreatmentMosquitoproductareaunitEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTreatmentMosquitoproductareaunitEnum(x)
case []byte:
*e = FieldseekerTreatmentMosquitoproductareaunitEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTreatmentMosquitoproductareaunitEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTreatmentMosquitoproductareaunitEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTreatmentMosquitoproductmeasureunitEnum
const (
FieldseekerTreatmentMosquitoproductmeasureunitEnumBriquet FieldseekerTreatmentMosquitoproductmeasureunitEnum = "briquet"
FieldseekerTreatmentMosquitoproductmeasureunitEnumDryOz FieldseekerTreatmentMosquitoproductmeasureunitEnum = "dry oz"
FieldseekerTreatmentMosquitoproductmeasureunitEnumEach FieldseekerTreatmentMosquitoproductmeasureunitEnum = "each"
FieldseekerTreatmentMosquitoproductmeasureunitEnumFLOz FieldseekerTreatmentMosquitoproductmeasureunitEnum = "fl oz"
FieldseekerTreatmentMosquitoproductmeasureunitEnumGal FieldseekerTreatmentMosquitoproductmeasureunitEnum = "gal"
FieldseekerTreatmentMosquitoproductmeasureunitEnumLB FieldseekerTreatmentMosquitoproductmeasureunitEnum = "lb"
FieldseekerTreatmentMosquitoproductmeasureunitEnumPacket FieldseekerTreatmentMosquitoproductmeasureunitEnum = "packet"
FieldseekerTreatmentMosquitoproductmeasureunitEnumPouch FieldseekerTreatmentMosquitoproductmeasureunitEnum = "pouch"
)
func AllFieldseekerTreatmentMosquitoproductmeasureunitEnum() []FieldseekerTreatmentMosquitoproductmeasureunitEnum {
return []FieldseekerTreatmentMosquitoproductmeasureunitEnum{
FieldseekerTreatmentMosquitoproductmeasureunitEnumBriquet,
FieldseekerTreatmentMosquitoproductmeasureunitEnumDryOz,
FieldseekerTreatmentMosquitoproductmeasureunitEnumEach,
FieldseekerTreatmentMosquitoproductmeasureunitEnumFLOz,
FieldseekerTreatmentMosquitoproductmeasureunitEnumGal,
FieldseekerTreatmentMosquitoproductmeasureunitEnumLB,
FieldseekerTreatmentMosquitoproductmeasureunitEnumPacket,
FieldseekerTreatmentMosquitoproductmeasureunitEnumPouch,
}
}
type FieldseekerTreatmentMosquitoproductmeasureunitEnum string
func (e FieldseekerTreatmentMosquitoproductmeasureunitEnum) String() string {
return string(e)
}
func (e FieldseekerTreatmentMosquitoproductmeasureunitEnum) Valid() bool {
switch e {
case FieldseekerTreatmentMosquitoproductmeasureunitEnumBriquet,
FieldseekerTreatmentMosquitoproductmeasureunitEnumDryOz,
FieldseekerTreatmentMosquitoproductmeasureunitEnumEach,
FieldseekerTreatmentMosquitoproductmeasureunitEnumFLOz,
FieldseekerTreatmentMosquitoproductmeasureunitEnumGal,
FieldseekerTreatmentMosquitoproductmeasureunitEnumLB,
FieldseekerTreatmentMosquitoproductmeasureunitEnumPacket,
FieldseekerTreatmentMosquitoproductmeasureunitEnumPouch:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTreatmentMosquitoproductmeasureunitEnum) All() []FieldseekerTreatmentMosquitoproductmeasureunitEnum {
return AllFieldseekerTreatmentMosquitoproductmeasureunitEnum()
}
func (e FieldseekerTreatmentMosquitoproductmeasureunitEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTreatmentMosquitoproductmeasureunitEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTreatmentMosquitoproductmeasureunitEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTreatmentMosquitoproductmeasureunitEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTreatmentMosquitoproductmeasureunitEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTreatmentMosquitoproductmeasureunitEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTreatmentMosquitoproductmeasureunitEnum(x)
case []byte:
*e = FieldseekerTreatmentMosquitoproductmeasureunitEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTreatmentMosquitoproductmeasureunitEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTreatmentMosquitoproductmeasureunitEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTreatmentNotinuitFEnum
const (
FieldseekerTreatmentNotinuitFEnum1 FieldseekerTreatmentNotinuitFEnum = "1"
FieldseekerTreatmentNotinuitFEnum0 FieldseekerTreatmentNotinuitFEnum = "0"
)
func AllFieldseekerTreatmentNotinuitFEnum() []FieldseekerTreatmentNotinuitFEnum {
return []FieldseekerTreatmentNotinuitFEnum{
FieldseekerTreatmentNotinuitFEnum1,
FieldseekerTreatmentNotinuitFEnum0,
}
}
type FieldseekerTreatmentNotinuitFEnum string
func (e FieldseekerTreatmentNotinuitFEnum) String() string {
return string(e)
}
func (e FieldseekerTreatmentNotinuitFEnum) Valid() bool {
switch e {
case FieldseekerTreatmentNotinuitFEnum1,
FieldseekerTreatmentNotinuitFEnum0:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTreatmentNotinuitFEnum) All() []FieldseekerTreatmentNotinuitFEnum {
return AllFieldseekerTreatmentNotinuitFEnum()
}
func (e FieldseekerTreatmentNotinuitFEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTreatmentNotinuitFEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTreatmentNotinuitFEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTreatmentNotinuitFEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTreatmentNotinuitFEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTreatmentNotinuitFEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTreatmentNotinuitFEnum(x)
case []byte:
*e = FieldseekerTreatmentNotinuitFEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTreatmentNotinuitFEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTreatmentNotinuitFEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTreatmentNotinuiwinddirectionEnum
const (
FieldseekerTreatmentNotinuiwinddirectionEnumN FieldseekerTreatmentNotinuiwinddirectionEnum = "N"
FieldseekerTreatmentNotinuiwinddirectionEnumNe FieldseekerTreatmentNotinuiwinddirectionEnum = "NE"
FieldseekerTreatmentNotinuiwinddirectionEnumE FieldseekerTreatmentNotinuiwinddirectionEnum = "E"
FieldseekerTreatmentNotinuiwinddirectionEnumSe FieldseekerTreatmentNotinuiwinddirectionEnum = "SE"
FieldseekerTreatmentNotinuiwinddirectionEnumS FieldseekerTreatmentNotinuiwinddirectionEnum = "S"
FieldseekerTreatmentNotinuiwinddirectionEnumSW FieldseekerTreatmentNotinuiwinddirectionEnum = "SW"
FieldseekerTreatmentNotinuiwinddirectionEnumW FieldseekerTreatmentNotinuiwinddirectionEnum = "W"
FieldseekerTreatmentNotinuiwinddirectionEnumNW FieldseekerTreatmentNotinuiwinddirectionEnum = "NW"
)
func AllFieldseekerTreatmentNotinuiwinddirectionEnum() []FieldseekerTreatmentNotinuiwinddirectionEnum {
return []FieldseekerTreatmentNotinuiwinddirectionEnum{
FieldseekerTreatmentNotinuiwinddirectionEnumN,
FieldseekerTreatmentNotinuiwinddirectionEnumNe,
FieldseekerTreatmentNotinuiwinddirectionEnumE,
FieldseekerTreatmentNotinuiwinddirectionEnumSe,
FieldseekerTreatmentNotinuiwinddirectionEnumS,
FieldseekerTreatmentNotinuiwinddirectionEnumSW,
FieldseekerTreatmentNotinuiwinddirectionEnumW,
FieldseekerTreatmentNotinuiwinddirectionEnumNW,
}
}
type FieldseekerTreatmentNotinuiwinddirectionEnum string
func (e FieldseekerTreatmentNotinuiwinddirectionEnum) String() string {
return string(e)
}
func (e FieldseekerTreatmentNotinuiwinddirectionEnum) Valid() bool {
switch e {
case FieldseekerTreatmentNotinuiwinddirectionEnumN,
FieldseekerTreatmentNotinuiwinddirectionEnumNe,
FieldseekerTreatmentNotinuiwinddirectionEnumE,
FieldseekerTreatmentNotinuiwinddirectionEnumSe,
FieldseekerTreatmentNotinuiwinddirectionEnumS,
FieldseekerTreatmentNotinuiwinddirectionEnumSW,
FieldseekerTreatmentNotinuiwinddirectionEnumW,
FieldseekerTreatmentNotinuiwinddirectionEnumNW:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTreatmentNotinuiwinddirectionEnum) All() []FieldseekerTreatmentNotinuiwinddirectionEnum {
return AllFieldseekerTreatmentNotinuiwinddirectionEnum()
}
func (e FieldseekerTreatmentNotinuiwinddirectionEnum) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTreatmentNotinuiwinddirectionEnum) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTreatmentNotinuiwinddirectionEnum) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTreatmentNotinuiwinddirectionEnum) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTreatmentNotinuiwinddirectionEnum) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTreatmentNotinuiwinddirectionEnum) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTreatmentNotinuiwinddirectionEnum(x)
case []byte:
*e = FieldseekerTreatmentNotinuiwinddirectionEnum(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTreatmentNotinuiwinddirectionEnum")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTreatmentNotinuiwinddirectionEnum value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f
const (
FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fBackpackU231 FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f = "Backpack #1"
FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fA1MistSprayerU28T3U29 FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f = "A1 Mist Sprayer (T-3) "
FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fSpreaderU232 FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f = "Spreader #2"
FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fGuardianU2373 FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f = "Guardian #73 "
FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fUlvU2374U28grizzlyU29 FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f = "ULV #74 (Grizzly)"
FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fClarkUlvSprayerU2371 FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f = "Clark ULV Sprayer #71"
FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fClarkUlvSprayerU2372 FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f = "Clark ULV Sprayer #72"
FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fSprayBottle FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f = "Spray bottle"
)
func AllFieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f() []FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f {
return []FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f{
FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fBackpackU231,
FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fA1MistSprayerU28T3U29,
FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fSpreaderU232,
FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fGuardianU2373,
FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fUlvU2374U28grizzlyU29,
FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fClarkUlvSprayerU2371,
FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fClarkUlvSprayerU2372,
FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fSprayBottle,
}
}
type FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f string
func (e FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f) String() string {
return string(e)
}
func (e FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f) Valid() bool {
switch e {
case FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fBackpackU231,
FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fA1MistSprayerU28T3U29,
FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fSpreaderU232,
FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fGuardianU2373,
FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fUlvU2374U28grizzlyU29,
FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fClarkUlvSprayerU2371,
FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fClarkUlvSprayerU2372,
FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4fSprayBottle:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f) All() []FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f {
return AllFieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f()
}
func (e FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f(x)
case []byte:
*e = FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTreatmentTreatmentEquiptype45694D79FF2142CCBe4fA0d1def4f value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1
const (
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Orchard FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "orchard"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1RowCrops FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "row_crops"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1VineCrops FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "vine_crops"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1AgGrassOrGrain FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "ag_grass_or_grain"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Pasture FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "pasture"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1IrrigationStandpipe FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "irrigation_standpipe"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Ditch FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "ditch"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Pond FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "pond"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Sump FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "sump"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Drain FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "drain"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1DairyLagoon FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "dairy_lagoon"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1WastewaterTreatment FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "wastewater_treatment"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Trough FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "trough"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Depression FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "depression"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Gutter FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "gutter"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1RainGutter FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "rain_gutter"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Culvert FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "culvert"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Utility FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "Utility"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1CatchBasin FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "catch_basin"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1StreamOrCreek FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "stream_or_creek"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Slough FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "slough"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1River FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "river"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1MarshOrWetlands FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "marsh_or_wetlands"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Containers FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "containers"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1WateringBowl FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "watering_bowl"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1PlantSaucer FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "plant_saucer"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1YardDrain FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "yard_drain"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1PlantAxil FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "plant_axil"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Treehole FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "treehole"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1FoutainOrWaterFeature FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "foutain_or_water_feature"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1BirdBath FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "bird_bath"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1MiscWaterAccumulation FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "misc_water_accumulation"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1TarpOrCover FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "tarp_or_cover"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1SwimmingPool FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "swimming_pool"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1AbovegroundPool FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "aboveground_pool"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1KidPool FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "kid_pool"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1HotTub FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "hot_tub"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Applicance FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "applicance"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1FloodedStructure FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "flooded_structure"
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1LowPoint FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 = "low_point"
)
func AllFieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1() []FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 {
return []FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1{
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Orchard,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1RowCrops,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1VineCrops,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1AgGrassOrGrain,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Pasture,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1IrrigationStandpipe,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Ditch,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Pond,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Sump,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Drain,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1DairyLagoon,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1WastewaterTreatment,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Trough,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Depression,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Gutter,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1RainGutter,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Culvert,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Utility,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1CatchBasin,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1StreamOrCreek,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Slough,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1River,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1MarshOrWetlands,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Containers,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1WateringBowl,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1PlantSaucer,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1YardDrain,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1PlantAxil,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Treehole,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1FoutainOrWaterFeature,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1BirdBath,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1MiscWaterAccumulation,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1TarpOrCover,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1SwimmingPool,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1AbovegroundPool,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1KidPool,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1HotTub,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Applicance,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1FloodedStructure,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1LowPoint,
}
}
type FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 string
func (e FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1) String() string {
return string(e)
}
func (e FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1) Valid() bool {
switch e {
case FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Orchard,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1RowCrops,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1VineCrops,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1AgGrassOrGrain,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Pasture,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1IrrigationStandpipe,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Ditch,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Pond,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Sump,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Drain,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1DairyLagoon,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1WastewaterTreatment,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Trough,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Depression,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Gutter,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1RainGutter,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Culvert,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Utility,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1CatchBasin,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1StreamOrCreek,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Slough,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1River,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1MarshOrWetlands,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Containers,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1WateringBowl,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1PlantSaucer,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1YardDrain,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1PlantAxil,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Treehole,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1FoutainOrWaterFeature,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1BirdBath,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1MiscWaterAccumulation,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1TarpOrCover,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1SwimmingPool,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1AbovegroundPool,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1KidPool,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1HotTub,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1Applicance,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1FloodedStructure,
FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1LowPoint:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1) All() []FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 {
return AllFieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1()
}
func (e FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1(x)
case []byte:
*e = FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTreatmentTreatmentHabitat0afee7ebF9ea47078483Cccfe60f0d1 value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu
const (
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuArgo FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu = "Argo"
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuAtv FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu = "ATV"
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuBackpack FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu = "Backpack"
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuDrone FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu = "Drone"
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuManual FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu = "Manual"
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuTruck FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu = "Truck"
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuUlv FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu = "ULV"
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuWals FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu = "WALS"
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuAdministrativeAction FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu = "Administrative Action"
)
func AllFieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu() []FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu {
return []FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu{
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuArgo,
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuAtv,
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuBackpack,
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuDrone,
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuManual,
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuTruck,
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuUlv,
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuWals,
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuAdministrativeAction,
}
}
type FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu string
func (e FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu) String() string {
return string(e)
}
func (e FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu) Valid() bool {
switch e {
case FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuArgo,
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuAtv,
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuBackpack,
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuDrone,
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuManual,
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuTruck,
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuUlv,
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuWals,
FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621EnuAdministrativeAction:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu) All() []FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu {
return AllFieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu()
}
func (e FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu(x)
case []byte:
*e = FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTreatmentTreatmentMethodD558ca3ccf43440c8160758253967621Enu value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E
const (
FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571EDry FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E = "Dry"
FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571EFlowing FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E = "Flowing"
FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571EMaintained FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E = "Maintained"
FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571EUnmaintained FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E = "Unmaintained"
FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571EHighOrganic FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E = "High Organic"
FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571EFishPresent FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E = "Fish Present"
FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571EStagnant FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E = "Stagnant"
)
func AllFieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E() []FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E {
return []FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E{
FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571EDry,
FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571EFlowing,
FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571EMaintained,
FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571EUnmaintained,
FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571EHighOrganic,
FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571EFishPresent,
FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571EStagnant,
}
}
type FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E string
func (e FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E) String() string {
return string(e)
}
func (e FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E) Valid() bool {
switch e {
case FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571EDry,
FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571EFlowing,
FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571EMaintained,
FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571EUnmaintained,
FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571EHighOrganic,
FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571EFishPresent,
FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571EStagnant:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E) All() []FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E {
return AllFieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E()
}
func (e FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E(x)
case []byte:
*e = FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTreatmentTreatmentSitecond5a15bf36fa124280b961f31cd1a9b571E value: %s", *e)
}
return nil
}
// Enum values for FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E
const (
FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169EDry FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E = "Dry"
FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169EFlowing FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E = "Flowing"
FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169EMaintained FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E = "Maintained"
FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169EUnmaintained FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E = "Unmaintained"
FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169EHighOrganic FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E = "High Organic"
FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169EFishPresent FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E = "Fish Present"
)
func AllFieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E() []FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E {
return []FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E{
FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169EDry,
FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169EFlowing,
FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169EMaintained,
FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169EUnmaintained,
FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169EHighOrganic,
FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169EFishPresent,
}
}
type FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E string
func (e FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E) String() string {
return string(e)
}
func (e FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E) Valid() bool {
switch e {
case FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169EDry,
FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169EFlowing,
FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169EMaintained,
FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169EUnmaintained,
FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169EHighOrganic,
FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169EFishPresent:
return true
default:
return false
}
}
// useful when testing in other packages
func (e FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E) All() []FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E {
return AllFieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E()
}
func (e FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E) Value() (driver.Value, error) {
return string(e), nil
}
func (e *FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E) Scan(value any) error {
switch x := value.(type) {
case string:
*e = FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E(x)
case []byte:
*e = FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E(x)
case nil:
return fmt.Errorf("cannot nil into FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid FieldseekerTreatmentTreatmentSitecondF812e1f64dcb4dc9a75da9d00abe6169E value: %s", *e)
}
return nil
}
// Enum values for H3aggregationtype
const (
H3aggregationtypeMosquitosource H3aggregationtype = "MosquitoSource"
H3aggregationtypeServicerequest H3aggregationtype = "ServiceRequest"
)
func AllH3aggregationtype() []H3aggregationtype {
return []H3aggregationtype{
H3aggregationtypeMosquitosource,
H3aggregationtypeServicerequest,
}
}
type H3aggregationtype string
func (e H3aggregationtype) String() string {
return string(e)
}
func (e H3aggregationtype) Valid() bool {
switch e {
case H3aggregationtypeMosquitosource,
H3aggregationtypeServicerequest:
return true
default:
return false
}
}
// useful when testing in other packages
func (e H3aggregationtype) All() []H3aggregationtype {
return AllH3aggregationtype()
}
func (e H3aggregationtype) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *H3aggregationtype) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e H3aggregationtype) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *H3aggregationtype) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e H3aggregationtype) Value() (driver.Value, error) {
return string(e), nil
}
func (e *H3aggregationtype) Scan(value any) error {
switch x := value.(type) {
case string:
*e = H3aggregationtype(x)
case []byte:
*e = H3aggregationtype(x)
case nil:
return fmt.Errorf("cannot nil into H3aggregationtype")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid H3aggregationtype value: %s", *e)
}
return nil
}
// Enum values for Hashtype
const (
HashtypeBcrypt14 Hashtype = "bcrypt-14"
)
func AllHashtype() []Hashtype {
return []Hashtype{
HashtypeBcrypt14,
}
}
type Hashtype string
func (e Hashtype) String() string {
return string(e)
}
func (e Hashtype) Valid() bool {
switch e {
case HashtypeBcrypt14:
return true
default:
return false
}
}
// useful when testing in other packages
func (e Hashtype) All() []Hashtype {
return AllHashtype()
}
func (e Hashtype) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *Hashtype) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e Hashtype) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *Hashtype) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e Hashtype) Value() (driver.Value, error) {
return string(e), nil
}
func (e *Hashtype) Scan(value any) error {
switch x := value.(type) {
case string:
*e = Hashtype(x)
case []byte:
*e = Hashtype(x)
case nil:
return fmt.Errorf("cannot nil into Hashtype")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid Hashtype value: %s", *e)
}
return nil
}
// Enum values for Notificationtype
const (
NotificationtypeOauthTokenInvalidated Notificationtype = "oauth_token_invalidated"
)
func AllNotificationtype() []Notificationtype {
return []Notificationtype{
NotificationtypeOauthTokenInvalidated,
}
}
type Notificationtype string
func (e Notificationtype) String() string {
return string(e)
}
func (e Notificationtype) Valid() bool {
switch e {
case NotificationtypeOauthTokenInvalidated:
return true
default:
return false
}
}
// useful when testing in other packages
func (e Notificationtype) All() []Notificationtype {
return AllNotificationtype()
}
func (e Notificationtype) MarshalText() ([]byte, error) {
return []byte(e), nil
}
func (e *Notificationtype) UnmarshalText(text []byte) error {
return e.Scan(text)
}
func (e Notificationtype) MarshalBinary() ([]byte, error) {
return []byte(e), nil
}
func (e *Notificationtype) UnmarshalBinary(data []byte) error {
return e.Scan(data)
}
func (e Notificationtype) Value() (driver.Value, error) {
return string(e), nil
}
func (e *Notificationtype) Scan(value any) error {
switch x := value.(type) {
case string:
*e = Notificationtype(x)
case []byte:
*e = Notificationtype(x)
case nil:
return fmt.Errorf("cannot nil into Notificationtype")
default:
return fmt.Errorf("cannot scan type %T: %v", value, value)
}
if !e.Valid() {
return fmt.Errorf("invalid Notificationtype value: %s", *e)
}
return nil
}