routingnumber

package
v0.0.13 Latest Latest
Warning

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

Go to latest
Published: May 7, 2021 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the routingnumber type in the database.
	Label = "routing_number"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldNumber holds the string denoting the number field in the database.
	FieldNumber = "number"
	// FieldType holds the string denoting the type field in the database.
	FieldType = "type"
	// Table holds the table name of the routingnumber in the database.
	Table = "routing_numbers"
)

Variables

Columns holds all SQL columns for routingnumber fields.

View Source
var ForeignKeys = []string{
	"account_routingnumbers",
}

ForeignKeys holds the SQL foreign-keys that are owned by the "routing_numbers" table and are not defined as standalone fields in the schema.

Functions

func And

And groups predicates with the AND operator between them.

func ID

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int) predicate.RoutingNumber

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.RoutingNumber

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.RoutingNumber

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int) predicate.RoutingNumber

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.RoutingNumber

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.RoutingNumber

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func Not

Not applies the not operator on the given predicate.

func Number

func Number(v string) predicate.RoutingNumber

Number applies equality check predicate on the "number" field. It's identical to NumberEQ.

func NumberContains

func NumberContains(v string) predicate.RoutingNumber

NumberContains applies the Contains predicate on the "number" field.

func NumberContainsFold

func NumberContainsFold(v string) predicate.RoutingNumber

NumberContainsFold applies the ContainsFold predicate on the "number" field.

func NumberEQ

func NumberEQ(v string) predicate.RoutingNumber

NumberEQ applies the EQ predicate on the "number" field.

func NumberEqualFold

func NumberEqualFold(v string) predicate.RoutingNumber

NumberEqualFold applies the EqualFold predicate on the "number" field.

func NumberGT

func NumberGT(v string) predicate.RoutingNumber

NumberGT applies the GT predicate on the "number" field.

func NumberGTE

func NumberGTE(v string) predicate.RoutingNumber

NumberGTE applies the GTE predicate on the "number" field.

func NumberHasPrefix

func NumberHasPrefix(v string) predicate.RoutingNumber

NumberHasPrefix applies the HasPrefix predicate on the "number" field.

func NumberHasSuffix

func NumberHasSuffix(v string) predicate.RoutingNumber

NumberHasSuffix applies the HasSuffix predicate on the "number" field.

func NumberIn

func NumberIn(vs ...string) predicate.RoutingNumber

NumberIn applies the In predicate on the "number" field.

func NumberLT

func NumberLT(v string) predicate.RoutingNumber

NumberLT applies the LT predicate on the "number" field.

func NumberLTE

func NumberLTE(v string) predicate.RoutingNumber

NumberLTE applies the LTE predicate on the "number" field.

func NumberNEQ

func NumberNEQ(v string) predicate.RoutingNumber

NumberNEQ applies the NEQ predicate on the "number" field.

func NumberNotIn

func NumberNotIn(vs ...string) predicate.RoutingNumber

NumberNotIn applies the NotIn predicate on the "number" field.

func Or

Or groups predicates with the OR operator between them.

func TypeEQ

func TypeEQ(v Type) predicate.RoutingNumber

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

func TypeIn

func TypeIn(vs ...Type) predicate.RoutingNumber

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

func TypeNEQ

func TypeNEQ(v Type) predicate.RoutingNumber

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

func TypeNotIn

func TypeNotIn(vs ...Type) predicate.RoutingNumber

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

func TypeValidator

func TypeValidator(_type Type) error

TypeValidator is a validator for the "type" field enum values. It is called by the builders before save.

func ValidColumn

func ValidColumn(column string) bool

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

Types

type Type

type Type string

Type defines the type for the "type" enum field.

const (
	TypeWIRE Type = "WIRE"
	TypeABA  Type = "ABA"
)

Type values.

func (Type) String

func (_type Type) String() string

Jump to

Keyboard shortcuts

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