airport

package
v0.0.0-...-2a81287 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 1, 2023 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the airport type in the database.
	Label = "airport"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldCity holds the string denoting the city field in the database.
	FieldCity = "city"
	// FieldCountry holds the string denoting the country field in the database.
	FieldCountry = "country"
	// FieldIata holds the string denoting the iata field in the database.
	FieldIata = "iata"
	// FieldIcao holds the string denoting the icao field in the database.
	FieldIcao = "icao"
	// FieldLatitude holds the string denoting the latitude field in the database.
	FieldLatitude = "latitude"
	// FieldLongitude holds the string denoting the longitude field in the database.
	FieldLongitude = "longitude"
	// FieldAltitude holds the string denoting the altitude field in the database.
	FieldAltitude = "altitude"
	// FieldTimezone holds the string denoting the timezone field in the database.
	FieldTimezone = "timezone"
	// FieldDst holds the string denoting the dst field in the database.
	FieldDst = "dst"
	// FieldTimezoneName holds the string denoting the timezonename field in the database.
	FieldTimezoneName = "timezone_name"
	// FieldType holds the string denoting the type field in the database.
	FieldType = "type"
	// FieldSource holds the string denoting the source field in the database.
	FieldSource = "source"
	// Table holds the table name of the airport in the database.
	Table = "airports"
)

Variables

Columns holds all SQL columns for airport fields.

Functions

func Altitude

func Altitude(v int) predicate.Airport

Altitude applies equality check predicate on the "altitude" field. It's identical to AltitudeEQ.

func AltitudeEQ

func AltitudeEQ(v int) predicate.Airport

AltitudeEQ applies the EQ predicate on the "altitude" field.

func AltitudeGT

func AltitudeGT(v int) predicate.Airport

AltitudeGT applies the GT predicate on the "altitude" field.

func AltitudeGTE

func AltitudeGTE(v int) predicate.Airport

AltitudeGTE applies the GTE predicate on the "altitude" field.

func AltitudeIn

func AltitudeIn(vs ...int) predicate.Airport

AltitudeIn applies the In predicate on the "altitude" field.

func AltitudeIsNil

func AltitudeIsNil() predicate.Airport

AltitudeIsNil applies the IsNil predicate on the "altitude" field.

func AltitudeLT

func AltitudeLT(v int) predicate.Airport

AltitudeLT applies the LT predicate on the "altitude" field.

func AltitudeLTE

func AltitudeLTE(v int) predicate.Airport

AltitudeLTE applies the LTE predicate on the "altitude" field.

func AltitudeNEQ

func AltitudeNEQ(v int) predicate.Airport

AltitudeNEQ applies the NEQ predicate on the "altitude" field.

func AltitudeNotIn

func AltitudeNotIn(vs ...int) predicate.Airport

AltitudeNotIn applies the NotIn predicate on the "altitude" field.

func AltitudeNotNil

func AltitudeNotNil() predicate.Airport

AltitudeNotNil applies the NotNil predicate on the "altitude" field.

func And

func And(predicates ...predicate.Airport) predicate.Airport

And groups predicates with the AND operator between them.

func City

func City(v string) predicate.Airport

City applies equality check predicate on the "city" field. It's identical to CityEQ.

func CityContains

func CityContains(v string) predicate.Airport

CityContains applies the Contains predicate on the "city" field.

func CityContainsFold

func CityContainsFold(v string) predicate.Airport

CityContainsFold applies the ContainsFold predicate on the "city" field.

func CityEQ

func CityEQ(v string) predicate.Airport

CityEQ applies the EQ predicate on the "city" field.

func CityEqualFold

func CityEqualFold(v string) predicate.Airport

CityEqualFold applies the EqualFold predicate on the "city" field.

func CityGT

func CityGT(v string) predicate.Airport

CityGT applies the GT predicate on the "city" field.

func CityGTE

func CityGTE(v string) predicate.Airport

CityGTE applies the GTE predicate on the "city" field.

func CityHasPrefix

func CityHasPrefix(v string) predicate.Airport

CityHasPrefix applies the HasPrefix predicate on the "city" field.

func CityHasSuffix

func CityHasSuffix(v string) predicate.Airport

CityHasSuffix applies the HasSuffix predicate on the "city" field.

func CityIn

func CityIn(vs ...string) predicate.Airport

CityIn applies the In predicate on the "city" field.

func CityIsNil

func CityIsNil() predicate.Airport

CityIsNil applies the IsNil predicate on the "city" field.

func CityLT

func CityLT(v string) predicate.Airport

CityLT applies the LT predicate on the "city" field.

func CityLTE

func CityLTE(v string) predicate.Airport

CityLTE applies the LTE predicate on the "city" field.

func CityNEQ

func CityNEQ(v string) predicate.Airport

CityNEQ applies the NEQ predicate on the "city" field.

func CityNotIn

func CityNotIn(vs ...string) predicate.Airport

CityNotIn applies the NotIn predicate on the "city" field.

func CityNotNil

func CityNotNil() predicate.Airport

CityNotNil applies the NotNil predicate on the "city" field.

func Country

func Country(v string) predicate.Airport

Country applies equality check predicate on the "country" field. It's identical to CountryEQ.

func CountryContains

func CountryContains(v string) predicate.Airport

CountryContains applies the Contains predicate on the "country" field.

func CountryContainsFold

func CountryContainsFold(v string) predicate.Airport

CountryContainsFold applies the ContainsFold predicate on the "country" field.

func CountryEQ

func CountryEQ(v string) predicate.Airport

CountryEQ applies the EQ predicate on the "country" field.

func CountryEqualFold

func CountryEqualFold(v string) predicate.Airport

CountryEqualFold applies the EqualFold predicate on the "country" field.

func CountryGT

func CountryGT(v string) predicate.Airport

CountryGT applies the GT predicate on the "country" field.

func CountryGTE

func CountryGTE(v string) predicate.Airport

CountryGTE applies the GTE predicate on the "country" field.

func CountryHasPrefix

func CountryHasPrefix(v string) predicate.Airport

CountryHasPrefix applies the HasPrefix predicate on the "country" field.

func CountryHasSuffix

func CountryHasSuffix(v string) predicate.Airport

CountryHasSuffix applies the HasSuffix predicate on the "country" field.

func CountryIn

func CountryIn(vs ...string) predicate.Airport

CountryIn applies the In predicate on the "country" field.

func CountryIsNil

func CountryIsNil() predicate.Airport

CountryIsNil applies the IsNil predicate on the "country" field.

func CountryLT

func CountryLT(v string) predicate.Airport

CountryLT applies the LT predicate on the "country" field.

func CountryLTE

func CountryLTE(v string) predicate.Airport

CountryLTE applies the LTE predicate on the "country" field.

func CountryNEQ

func CountryNEQ(v string) predicate.Airport

CountryNEQ applies the NEQ predicate on the "country" field.

func CountryNotIn

func CountryNotIn(vs ...string) predicate.Airport

CountryNotIn applies the NotIn predicate on the "country" field.

func CountryNotNil

func CountryNotNil() predicate.Airport

CountryNotNil applies the NotNil predicate on the "country" field.

func Dst

func Dst(v string) predicate.Airport

Dst applies equality check predicate on the "dst" field. It's identical to DstEQ.

func DstContains

func DstContains(v string) predicate.Airport

DstContains applies the Contains predicate on the "dst" field.

func DstContainsFold

func DstContainsFold(v string) predicate.Airport

DstContainsFold applies the ContainsFold predicate on the "dst" field.

func DstEQ

func DstEQ(v string) predicate.Airport

DstEQ applies the EQ predicate on the "dst" field.

func DstEqualFold

func DstEqualFold(v string) predicate.Airport

DstEqualFold applies the EqualFold predicate on the "dst" field.

func DstGT

func DstGT(v string) predicate.Airport

DstGT applies the GT predicate on the "dst" field.

func DstGTE

func DstGTE(v string) predicate.Airport

DstGTE applies the GTE predicate on the "dst" field.

func DstHasPrefix

func DstHasPrefix(v string) predicate.Airport

DstHasPrefix applies the HasPrefix predicate on the "dst" field.

func DstHasSuffix

func DstHasSuffix(v string) predicate.Airport

DstHasSuffix applies the HasSuffix predicate on the "dst" field.

func DstIn

func DstIn(vs ...string) predicate.Airport

DstIn applies the In predicate on the "dst" field.

func DstIsNil

func DstIsNil() predicate.Airport

DstIsNil applies the IsNil predicate on the "dst" field.

func DstLT

func DstLT(v string) predicate.Airport

DstLT applies the LT predicate on the "dst" field.

func DstLTE

func DstLTE(v string) predicate.Airport

DstLTE applies the LTE predicate on the "dst" field.

func DstNEQ

func DstNEQ(v string) predicate.Airport

DstNEQ applies the NEQ predicate on the "dst" field.

func DstNotIn

func DstNotIn(vs ...string) predicate.Airport

DstNotIn applies the NotIn predicate on the "dst" field.

func DstNotNil

func DstNotNil() predicate.Airport

DstNotNil applies the NotNil predicate on the "dst" field.

func ID

func ID(id int) predicate.Airport

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int) predicate.Airport

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.Airport

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.Airport

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int) predicate.Airport

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int) predicate.Airport

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.Airport

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.Airport

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...int) predicate.Airport

IDNotIn applies the NotIn predicate on the ID field.

func Iata

func Iata(v string) predicate.Airport

Iata applies equality check predicate on the "iata" field. It's identical to IataEQ.

func IataContains

func IataContains(v string) predicate.Airport

IataContains applies the Contains predicate on the "iata" field.

func IataContainsFold

func IataContainsFold(v string) predicate.Airport

IataContainsFold applies the ContainsFold predicate on the "iata" field.

func IataEQ

func IataEQ(v string) predicate.Airport

IataEQ applies the EQ predicate on the "iata" field.

func IataEqualFold

func IataEqualFold(v string) predicate.Airport

IataEqualFold applies the EqualFold predicate on the "iata" field.

func IataGT

func IataGT(v string) predicate.Airport

IataGT applies the GT predicate on the "iata" field.

func IataGTE

func IataGTE(v string) predicate.Airport

IataGTE applies the GTE predicate on the "iata" field.

func IataHasPrefix

func IataHasPrefix(v string) predicate.Airport

IataHasPrefix applies the HasPrefix predicate on the "iata" field.

func IataHasSuffix

func IataHasSuffix(v string) predicate.Airport

IataHasSuffix applies the HasSuffix predicate on the "iata" field.

func IataIn

func IataIn(vs ...string) predicate.Airport

IataIn applies the In predicate on the "iata" field.

func IataIsNil

func IataIsNil() predicate.Airport

IataIsNil applies the IsNil predicate on the "iata" field.

func IataLT

func IataLT(v string) predicate.Airport

IataLT applies the LT predicate on the "iata" field.

func IataLTE

func IataLTE(v string) predicate.Airport

IataLTE applies the LTE predicate on the "iata" field.

func IataNEQ

func IataNEQ(v string) predicate.Airport

IataNEQ applies the NEQ predicate on the "iata" field.

func IataNotIn

func IataNotIn(vs ...string) predicate.Airport

IataNotIn applies the NotIn predicate on the "iata" field.

func IataNotNil

func IataNotNil() predicate.Airport

IataNotNil applies the NotNil predicate on the "iata" field.

func Icao

func Icao(v string) predicate.Airport

Icao applies equality check predicate on the "icao" field. It's identical to IcaoEQ.

func IcaoContains

func IcaoContains(v string) predicate.Airport

IcaoContains applies the Contains predicate on the "icao" field.

func IcaoContainsFold

func IcaoContainsFold(v string) predicate.Airport

IcaoContainsFold applies the ContainsFold predicate on the "icao" field.

func IcaoEQ

func IcaoEQ(v string) predicate.Airport

IcaoEQ applies the EQ predicate on the "icao" field.

func IcaoEqualFold

func IcaoEqualFold(v string) predicate.Airport

IcaoEqualFold applies the EqualFold predicate on the "icao" field.

func IcaoGT

func IcaoGT(v string) predicate.Airport

IcaoGT applies the GT predicate on the "icao" field.

func IcaoGTE

func IcaoGTE(v string) predicate.Airport

IcaoGTE applies the GTE predicate on the "icao" field.

func IcaoHasPrefix

func IcaoHasPrefix(v string) predicate.Airport

IcaoHasPrefix applies the HasPrefix predicate on the "icao" field.

func IcaoHasSuffix

func IcaoHasSuffix(v string) predicate.Airport

IcaoHasSuffix applies the HasSuffix predicate on the "icao" field.

func IcaoIn

func IcaoIn(vs ...string) predicate.Airport

IcaoIn applies the In predicate on the "icao" field.

func IcaoIsNil

func IcaoIsNil() predicate.Airport

IcaoIsNil applies the IsNil predicate on the "icao" field.

func IcaoLT

func IcaoLT(v string) predicate.Airport

IcaoLT applies the LT predicate on the "icao" field.

func IcaoLTE

func IcaoLTE(v string) predicate.Airport

IcaoLTE applies the LTE predicate on the "icao" field.

func IcaoNEQ

func IcaoNEQ(v string) predicate.Airport

IcaoNEQ applies the NEQ predicate on the "icao" field.

func IcaoNotIn

func IcaoNotIn(vs ...string) predicate.Airport

IcaoNotIn applies the NotIn predicate on the "icao" field.

func IcaoNotNil

func IcaoNotNil() predicate.Airport

IcaoNotNil applies the NotNil predicate on the "icao" field.

func Latitude

func Latitude(v float64) predicate.Airport

Latitude applies equality check predicate on the "latitude" field. It's identical to LatitudeEQ.

func LatitudeEQ

func LatitudeEQ(v float64) predicate.Airport

LatitudeEQ applies the EQ predicate on the "latitude" field.

func LatitudeGT

func LatitudeGT(v float64) predicate.Airport

LatitudeGT applies the GT predicate on the "latitude" field.

func LatitudeGTE

func LatitudeGTE(v float64) predicate.Airport

LatitudeGTE applies the GTE predicate on the "latitude" field.

func LatitudeIn

func LatitudeIn(vs ...float64) predicate.Airport

LatitudeIn applies the In predicate on the "latitude" field.

func LatitudeIsNil

func LatitudeIsNil() predicate.Airport

LatitudeIsNil applies the IsNil predicate on the "latitude" field.

func LatitudeLT

func LatitudeLT(v float64) predicate.Airport

LatitudeLT applies the LT predicate on the "latitude" field.

func LatitudeLTE

func LatitudeLTE(v float64) predicate.Airport

LatitudeLTE applies the LTE predicate on the "latitude" field.

func LatitudeNEQ

func LatitudeNEQ(v float64) predicate.Airport

LatitudeNEQ applies the NEQ predicate on the "latitude" field.

func LatitudeNotIn

func LatitudeNotIn(vs ...float64) predicate.Airport

LatitudeNotIn applies the NotIn predicate on the "latitude" field.

func LatitudeNotNil

func LatitudeNotNil() predicate.Airport

LatitudeNotNil applies the NotNil predicate on the "latitude" field.

func Longitude

func Longitude(v float64) predicate.Airport

Longitude applies equality check predicate on the "longitude" field. It's identical to LongitudeEQ.

func LongitudeEQ

func LongitudeEQ(v float64) predicate.Airport

LongitudeEQ applies the EQ predicate on the "longitude" field.

func LongitudeGT

func LongitudeGT(v float64) predicate.Airport

LongitudeGT applies the GT predicate on the "longitude" field.

func LongitudeGTE

func LongitudeGTE(v float64) predicate.Airport

LongitudeGTE applies the GTE predicate on the "longitude" field.

func LongitudeIn

func LongitudeIn(vs ...float64) predicate.Airport

LongitudeIn applies the In predicate on the "longitude" field.

func LongitudeIsNil

func LongitudeIsNil() predicate.Airport

LongitudeIsNil applies the IsNil predicate on the "longitude" field.

func LongitudeLT

func LongitudeLT(v float64) predicate.Airport

LongitudeLT applies the LT predicate on the "longitude" field.

func LongitudeLTE

func LongitudeLTE(v float64) predicate.Airport

LongitudeLTE applies the LTE predicate on the "longitude" field.

func LongitudeNEQ

func LongitudeNEQ(v float64) predicate.Airport

LongitudeNEQ applies the NEQ predicate on the "longitude" field.

func LongitudeNotIn

func LongitudeNotIn(vs ...float64) predicate.Airport

LongitudeNotIn applies the NotIn predicate on the "longitude" field.

func LongitudeNotNil

func LongitudeNotNil() predicate.Airport

LongitudeNotNil applies the NotNil predicate on the "longitude" field.

func Name

func Name(v string) predicate.Airport

Name applies equality check predicate on the "name" field. It's identical to NameEQ.

func NameContains

func NameContains(v string) predicate.Airport

NameContains applies the Contains predicate on the "name" field.

func NameContainsFold

func NameContainsFold(v string) predicate.Airport

NameContainsFold applies the ContainsFold predicate on the "name" field.

func NameEQ

func NameEQ(v string) predicate.Airport

NameEQ applies the EQ predicate on the "name" field.

func NameEqualFold

func NameEqualFold(v string) predicate.Airport

NameEqualFold applies the EqualFold predicate on the "name" field.

func NameGT

func NameGT(v string) predicate.Airport

NameGT applies the GT predicate on the "name" field.

func NameGTE

func NameGTE(v string) predicate.Airport

NameGTE applies the GTE predicate on the "name" field.

func NameHasPrefix

func NameHasPrefix(v string) predicate.Airport

NameHasPrefix applies the HasPrefix predicate on the "name" field.

func NameHasSuffix

func NameHasSuffix(v string) predicate.Airport

NameHasSuffix applies the HasSuffix predicate on the "name" field.

func NameIn

func NameIn(vs ...string) predicate.Airport

NameIn applies the In predicate on the "name" field.

func NameIsNil

func NameIsNil() predicate.Airport

NameIsNil applies the IsNil predicate on the "name" field.

func NameLT

func NameLT(v string) predicate.Airport

NameLT applies the LT predicate on the "name" field.

func NameLTE

func NameLTE(v string) predicate.Airport

NameLTE applies the LTE predicate on the "name" field.

func NameNEQ

func NameNEQ(v string) predicate.Airport

NameNEQ applies the NEQ predicate on the "name" field.

func NameNotIn

func NameNotIn(vs ...string) predicate.Airport

NameNotIn applies the NotIn predicate on the "name" field.

func NameNotNil

func NameNotNil() predicate.Airport

NameNotNil applies the NotNil predicate on the "name" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Airport) predicate.Airport

Or groups predicates with the OR operator between them.

func Source

func Source(v string) predicate.Airport

Source applies equality check predicate on the "source" field. It's identical to SourceEQ.

func SourceContains

func SourceContains(v string) predicate.Airport

SourceContains applies the Contains predicate on the "source" field.

func SourceContainsFold

func SourceContainsFold(v string) predicate.Airport

SourceContainsFold applies the ContainsFold predicate on the "source" field.

func SourceEQ

func SourceEQ(v string) predicate.Airport

SourceEQ applies the EQ predicate on the "source" field.

func SourceEqualFold

func SourceEqualFold(v string) predicate.Airport

SourceEqualFold applies the EqualFold predicate on the "source" field.

func SourceGT

func SourceGT(v string) predicate.Airport

SourceGT applies the GT predicate on the "source" field.

func SourceGTE

func SourceGTE(v string) predicate.Airport

SourceGTE applies the GTE predicate on the "source" field.

func SourceHasPrefix

func SourceHasPrefix(v string) predicate.Airport

SourceHasPrefix applies the HasPrefix predicate on the "source" field.

func SourceHasSuffix

func SourceHasSuffix(v string) predicate.Airport

SourceHasSuffix applies the HasSuffix predicate on the "source" field.

func SourceIn

func SourceIn(vs ...string) predicate.Airport

SourceIn applies the In predicate on the "source" field.

func SourceIsNil

func SourceIsNil() predicate.Airport

SourceIsNil applies the IsNil predicate on the "source" field.

func SourceLT

func SourceLT(v string) predicate.Airport

SourceLT applies the LT predicate on the "source" field.

func SourceLTE

func SourceLTE(v string) predicate.Airport

SourceLTE applies the LTE predicate on the "source" field.

func SourceNEQ

func SourceNEQ(v string) predicate.Airport

SourceNEQ applies the NEQ predicate on the "source" field.

func SourceNotIn

func SourceNotIn(vs ...string) predicate.Airport

SourceNotIn applies the NotIn predicate on the "source" field.

func SourceNotNil

func SourceNotNil() predicate.Airport

SourceNotNil applies the NotNil predicate on the "source" field.

func Timezone

func Timezone(v string) predicate.Airport

Timezone applies equality check predicate on the "timezone" field. It's identical to TimezoneEQ.

func TimezoneContains

func TimezoneContains(v string) predicate.Airport

TimezoneContains applies the Contains predicate on the "timezone" field.

func TimezoneContainsFold

func TimezoneContainsFold(v string) predicate.Airport

TimezoneContainsFold applies the ContainsFold predicate on the "timezone" field.

func TimezoneEQ

func TimezoneEQ(v string) predicate.Airport

TimezoneEQ applies the EQ predicate on the "timezone" field.

func TimezoneEqualFold

func TimezoneEqualFold(v string) predicate.Airport

TimezoneEqualFold applies the EqualFold predicate on the "timezone" field.

func TimezoneGT

func TimezoneGT(v string) predicate.Airport

TimezoneGT applies the GT predicate on the "timezone" field.

func TimezoneGTE

func TimezoneGTE(v string) predicate.Airport

TimezoneGTE applies the GTE predicate on the "timezone" field.

func TimezoneHasPrefix

func TimezoneHasPrefix(v string) predicate.Airport

TimezoneHasPrefix applies the HasPrefix predicate on the "timezone" field.

func TimezoneHasSuffix

func TimezoneHasSuffix(v string) predicate.Airport

TimezoneHasSuffix applies the HasSuffix predicate on the "timezone" field.

func TimezoneIn

func TimezoneIn(vs ...string) predicate.Airport

TimezoneIn applies the In predicate on the "timezone" field.

func TimezoneIsNil

func TimezoneIsNil() predicate.Airport

TimezoneIsNil applies the IsNil predicate on the "timezone" field.

func TimezoneLT

func TimezoneLT(v string) predicate.Airport

TimezoneLT applies the LT predicate on the "timezone" field.

func TimezoneLTE

func TimezoneLTE(v string) predicate.Airport

TimezoneLTE applies the LTE predicate on the "timezone" field.

func TimezoneNEQ

func TimezoneNEQ(v string) predicate.Airport

TimezoneNEQ applies the NEQ predicate on the "timezone" field.

func TimezoneName

func TimezoneName(v string) predicate.Airport

TimezoneName applies equality check predicate on the "timezoneName" field. It's identical to TimezoneNameEQ.

func TimezoneNameContains

func TimezoneNameContains(v string) predicate.Airport

TimezoneNameContains applies the Contains predicate on the "timezoneName" field.

func TimezoneNameContainsFold

func TimezoneNameContainsFold(v string) predicate.Airport

TimezoneNameContainsFold applies the ContainsFold predicate on the "timezoneName" field.

func TimezoneNameEQ

func TimezoneNameEQ(v string) predicate.Airport

TimezoneNameEQ applies the EQ predicate on the "timezoneName" field.

func TimezoneNameEqualFold

func TimezoneNameEqualFold(v string) predicate.Airport

TimezoneNameEqualFold applies the EqualFold predicate on the "timezoneName" field.

func TimezoneNameGT

func TimezoneNameGT(v string) predicate.Airport

TimezoneNameGT applies the GT predicate on the "timezoneName" field.

func TimezoneNameGTE

func TimezoneNameGTE(v string) predicate.Airport

TimezoneNameGTE applies the GTE predicate on the "timezoneName" field.

func TimezoneNameHasPrefix

func TimezoneNameHasPrefix(v string) predicate.Airport

TimezoneNameHasPrefix applies the HasPrefix predicate on the "timezoneName" field.

func TimezoneNameHasSuffix

func TimezoneNameHasSuffix(v string) predicate.Airport

TimezoneNameHasSuffix applies the HasSuffix predicate on the "timezoneName" field.

func TimezoneNameIn

func TimezoneNameIn(vs ...string) predicate.Airport

TimezoneNameIn applies the In predicate on the "timezoneName" field.

func TimezoneNameIsNil

func TimezoneNameIsNil() predicate.Airport

TimezoneNameIsNil applies the IsNil predicate on the "timezoneName" field.

func TimezoneNameLT

func TimezoneNameLT(v string) predicate.Airport

TimezoneNameLT applies the LT predicate on the "timezoneName" field.

func TimezoneNameLTE

func TimezoneNameLTE(v string) predicate.Airport

TimezoneNameLTE applies the LTE predicate on the "timezoneName" field.

func TimezoneNameNEQ

func TimezoneNameNEQ(v string) predicate.Airport

TimezoneNameNEQ applies the NEQ predicate on the "timezoneName" field.

func TimezoneNameNotIn

func TimezoneNameNotIn(vs ...string) predicate.Airport

TimezoneNameNotIn applies the NotIn predicate on the "timezoneName" field.

func TimezoneNameNotNil

func TimezoneNameNotNil() predicate.Airport

TimezoneNameNotNil applies the NotNil predicate on the "timezoneName" field.

func TimezoneNotIn

func TimezoneNotIn(vs ...string) predicate.Airport

TimezoneNotIn applies the NotIn predicate on the "timezone" field.

func TimezoneNotNil

func TimezoneNotNil() predicate.Airport

TimezoneNotNil applies the NotNil predicate on the "timezone" field.

func Type

func Type(v string) predicate.Airport

Type applies equality check predicate on the "type" field. It's identical to TypeEQ.

func TypeContains

func TypeContains(v string) predicate.Airport

TypeContains applies the Contains predicate on the "type" field.

func TypeContainsFold

func TypeContainsFold(v string) predicate.Airport

TypeContainsFold applies the ContainsFold predicate on the "type" field.

func TypeEQ

func TypeEQ(v string) predicate.Airport

TypeEQ applies the EQ predicate on the "type" field.

func TypeEqualFold

func TypeEqualFold(v string) predicate.Airport

TypeEqualFold applies the EqualFold predicate on the "type" field.

func TypeGT

func TypeGT(v string) predicate.Airport

TypeGT applies the GT predicate on the "type" field.

func TypeGTE

func TypeGTE(v string) predicate.Airport

TypeGTE applies the GTE predicate on the "type" field.

func TypeHasPrefix

func TypeHasPrefix(v string) predicate.Airport

TypeHasPrefix applies the HasPrefix predicate on the "type" field.

func TypeHasSuffix

func TypeHasSuffix(v string) predicate.Airport

TypeHasSuffix applies the HasSuffix predicate on the "type" field.

func TypeIn

func TypeIn(vs ...string) predicate.Airport

TypeIn applies the In predicate on the "type" field.

func TypeIsNil

func TypeIsNil() predicate.Airport

TypeIsNil applies the IsNil predicate on the "type" field.

func TypeLT

func TypeLT(v string) predicate.Airport

TypeLT applies the LT predicate on the "type" field.

func TypeLTE

func TypeLTE(v string) predicate.Airport

TypeLTE applies the LTE predicate on the "type" field.

func TypeNEQ

func TypeNEQ(v string) predicate.Airport

TypeNEQ applies the NEQ predicate on the "type" field.

func TypeNotIn

func TypeNotIn(vs ...string) predicate.Airport

TypeNotIn applies the NotIn predicate on the "type" field.

func TypeNotNil

func TypeNotNil() predicate.Airport

TypeNotNil applies the NotNil predicate on the "type" field.

func ValidColumn

func ValidColumn(column string) bool

ValidColumn reports if the column name is valid (part of the table columns).

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL