Documentation
¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.EntityContactPoint) predicate.EntityContactPoint
- func ID(id int) predicate.EntityContactPoint
- func IDEQ(id int) predicate.EntityContactPoint
- func IDGT(id int) predicate.EntityContactPoint
- func IDGTE(id int) predicate.EntityContactPoint
- func IDIn(ids ...int) predicate.EntityContactPoint
- func IDLT(id int) predicate.EntityContactPoint
- func IDLTE(id int) predicate.EntityContactPoint
- func IDNEQ(id int) predicate.EntityContactPoint
- func IDNotIn(ids ...int) predicate.EntityContactPoint
- func Name(v string) predicate.EntityContactPoint
- func NameContains(v string) predicate.EntityContactPoint
- func NameContainsFold(v string) predicate.EntityContactPoint
- func NameEQ(v string) predicate.EntityContactPoint
- func NameEqualFold(v string) predicate.EntityContactPoint
- func NameGT(v string) predicate.EntityContactPoint
- func NameGTE(v string) predicate.EntityContactPoint
- func NameHasPrefix(v string) predicate.EntityContactPoint
- func NameHasSuffix(v string) predicate.EntityContactPoint
- func NameIn(vs ...string) predicate.EntityContactPoint
- func NameLT(v string) predicate.EntityContactPoint
- func NameLTE(v string) predicate.EntityContactPoint
- func NameNEQ(v string) predicate.EntityContactPoint
- func NameNotIn(vs ...string) predicate.EntityContactPoint
- func Not(p predicate.EntityContactPoint) predicate.EntityContactPoint
- func Or(predicates ...predicate.EntityContactPoint) predicate.EntityContactPoint
- func Prefix(v string) predicate.EntityContactPoint
- func PrefixContains(v string) predicate.EntityContactPoint
- func PrefixContainsFold(v string) predicate.EntityContactPoint
- func PrefixEQ(v string) predicate.EntityContactPoint
- func PrefixEqualFold(v string) predicate.EntityContactPoint
- func PrefixGT(v string) predicate.EntityContactPoint
- func PrefixGTE(v string) predicate.EntityContactPoint
- func PrefixHasPrefix(v string) predicate.EntityContactPoint
- func PrefixHasSuffix(v string) predicate.EntityContactPoint
- func PrefixIn(vs ...string) predicate.EntityContactPoint
- func PrefixIsNil() predicate.EntityContactPoint
- func PrefixLT(v string) predicate.EntityContactPoint
- func PrefixLTE(v string) predicate.EntityContactPoint
- func PrefixNEQ(v string) predicate.EntityContactPoint
- func PrefixNotIn(vs ...string) predicate.EntityContactPoint
- func PrefixNotNil() predicate.EntityContactPoint
- func Suffix(v string) predicate.EntityContactPoint
- func SuffixContains(v string) predicate.EntityContactPoint
- func SuffixContainsFold(v string) predicate.EntityContactPoint
- func SuffixEQ(v string) predicate.EntityContactPoint
- func SuffixEqualFold(v string) predicate.EntityContactPoint
- func SuffixGT(v string) predicate.EntityContactPoint
- func SuffixGTE(v string) predicate.EntityContactPoint
- func SuffixHasPrefix(v string) predicate.EntityContactPoint
- func SuffixHasSuffix(v string) predicate.EntityContactPoint
- func SuffixIn(vs ...string) predicate.EntityContactPoint
- func SuffixIsNil() predicate.EntityContactPoint
- func SuffixLT(v string) predicate.EntityContactPoint
- func SuffixLTE(v string) predicate.EntityContactPoint
- func SuffixNEQ(v string) predicate.EntityContactPoint
- func SuffixNotIn(vs ...string) predicate.EntityContactPoint
- func SuffixNotNil() predicate.EntityContactPoint
- func TypeEQ(v Type) predicate.EntityContactPoint
- func TypeIn(vs ...Type) predicate.EntityContactPoint
- func TypeNEQ(v Type) predicate.EntityContactPoint
- func TypeNotIn(vs ...Type) predicate.EntityContactPoint
- func TypeValidator(_type Type) error
- func ValidColumn(column string) bool
- func Value(v string) predicate.EntityContactPoint
- func ValueContains(v string) predicate.EntityContactPoint
- func ValueContainsFold(v string) predicate.EntityContactPoint
- func ValueEQ(v string) predicate.EntityContactPoint
- func ValueEqualFold(v string) predicate.EntityContactPoint
- func ValueGT(v string) predicate.EntityContactPoint
- func ValueGTE(v string) predicate.EntityContactPoint
- func ValueHasPrefix(v string) predicate.EntityContactPoint
- func ValueHasSuffix(v string) predicate.EntityContactPoint
- func ValueIn(vs ...string) predicate.EntityContactPoint
- func ValueLT(v string) predicate.EntityContactPoint
- func ValueLTE(v string) predicate.EntityContactPoint
- func ValueNEQ(v string) predicate.EntityContactPoint
- func ValueNotIn(vs ...string) predicate.EntityContactPoint
- type Type
Constants ¶
const ( // Label holds the string label denoting the entitycontactpoint type in the database. Label = "entity_contact_point" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldPrefix holds the string denoting the prefix field in the database. FieldPrefix = "prefix" // FieldName holds the string denoting the name field in the database. FieldName = "name" // FieldType holds the string denoting the type field in the database. FieldType = "type" // FieldSuffix holds the string denoting the suffix field in the database. FieldSuffix = "suffix" // FieldValue holds the string denoting the value field in the database. FieldValue = "value" // Table holds the table name of the entitycontactpoint in the database. Table = "entity_contact_points" )
Variables ¶
var Columns = []string{ FieldID, FieldPrefix, FieldName, FieldType, FieldSuffix, FieldValue, }
Columns holds all SQL columns for entitycontactpoint fields.
var ForeignKeys = []string{
"entity_contact_points",
}
ForeignKeys holds the SQL foreign-keys that are owned by the "entity_contact_points" table and are not defined as standalone fields in the schema.
Functions ¶
func And ¶
func And(predicates ...predicate.EntityContactPoint) predicate.EntityContactPoint
And groups predicates with the AND operator between them.
func IDEQ ¶
func IDEQ(id int) predicate.EntityContactPoint
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id int) predicate.EntityContactPoint
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id int) predicate.EntityContactPoint
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...int) predicate.EntityContactPoint
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id int) predicate.EntityContactPoint
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id int) predicate.EntityContactPoint
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id int) predicate.EntityContactPoint
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...int) predicate.EntityContactPoint
IDNotIn applies the NotIn predicate on the ID field.
func Name ¶
func Name(v string) predicate.EntityContactPoint
Name applies equality check predicate on the "name" field. It's identical to NameEQ.
func NameContains ¶
func NameContains(v string) predicate.EntityContactPoint
NameContains applies the Contains predicate on the "name" field.
func NameContainsFold ¶
func NameContainsFold(v string) predicate.EntityContactPoint
NameContainsFold applies the ContainsFold predicate on the "name" field.
func NameEQ ¶
func NameEQ(v string) predicate.EntityContactPoint
NameEQ applies the EQ predicate on the "name" field.
func NameEqualFold ¶
func NameEqualFold(v string) predicate.EntityContactPoint
NameEqualFold applies the EqualFold predicate on the "name" field.
func NameGT ¶
func NameGT(v string) predicate.EntityContactPoint
NameGT applies the GT predicate on the "name" field.
func NameGTE ¶
func NameGTE(v string) predicate.EntityContactPoint
NameGTE applies the GTE predicate on the "name" field.
func NameHasPrefix ¶
func NameHasPrefix(v string) predicate.EntityContactPoint
NameHasPrefix applies the HasPrefix predicate on the "name" field.
func NameHasSuffix ¶
func NameHasSuffix(v string) predicate.EntityContactPoint
NameHasSuffix applies the HasSuffix predicate on the "name" field.
func NameIn ¶
func NameIn(vs ...string) predicate.EntityContactPoint
NameIn applies the In predicate on the "name" field.
func NameLT ¶
func NameLT(v string) predicate.EntityContactPoint
NameLT applies the LT predicate on the "name" field.
func NameLTE ¶
func NameLTE(v string) predicate.EntityContactPoint
NameLTE applies the LTE predicate on the "name" field.
func NameNEQ ¶
func NameNEQ(v string) predicate.EntityContactPoint
NameNEQ applies the NEQ predicate on the "name" field.
func NameNotIn ¶
func NameNotIn(vs ...string) predicate.EntityContactPoint
NameNotIn applies the NotIn predicate on the "name" field.
func Not ¶
func Not(p predicate.EntityContactPoint) predicate.EntityContactPoint
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.EntityContactPoint) predicate.EntityContactPoint
Or groups predicates with the OR operator between them.
func Prefix ¶
func Prefix(v string) predicate.EntityContactPoint
Prefix applies equality check predicate on the "prefix" field. It's identical to PrefixEQ.
func PrefixContains ¶
func PrefixContains(v string) predicate.EntityContactPoint
PrefixContains applies the Contains predicate on the "prefix" field.
func PrefixContainsFold ¶
func PrefixContainsFold(v string) predicate.EntityContactPoint
PrefixContainsFold applies the ContainsFold predicate on the "prefix" field.
func PrefixEQ ¶
func PrefixEQ(v string) predicate.EntityContactPoint
PrefixEQ applies the EQ predicate on the "prefix" field.
func PrefixEqualFold ¶
func PrefixEqualFold(v string) predicate.EntityContactPoint
PrefixEqualFold applies the EqualFold predicate on the "prefix" field.
func PrefixGT ¶
func PrefixGT(v string) predicate.EntityContactPoint
PrefixGT applies the GT predicate on the "prefix" field.
func PrefixGTE ¶
func PrefixGTE(v string) predicate.EntityContactPoint
PrefixGTE applies the GTE predicate on the "prefix" field.
func PrefixHasPrefix ¶
func PrefixHasPrefix(v string) predicate.EntityContactPoint
PrefixHasPrefix applies the HasPrefix predicate on the "prefix" field.
func PrefixHasSuffix ¶
func PrefixHasSuffix(v string) predicate.EntityContactPoint
PrefixHasSuffix applies the HasSuffix predicate on the "prefix" field.
func PrefixIn ¶
func PrefixIn(vs ...string) predicate.EntityContactPoint
PrefixIn applies the In predicate on the "prefix" field.
func PrefixIsNil ¶
func PrefixIsNil() predicate.EntityContactPoint
PrefixIsNil applies the IsNil predicate on the "prefix" field.
func PrefixLT ¶
func PrefixLT(v string) predicate.EntityContactPoint
PrefixLT applies the LT predicate on the "prefix" field.
func PrefixLTE ¶
func PrefixLTE(v string) predicate.EntityContactPoint
PrefixLTE applies the LTE predicate on the "prefix" field.
func PrefixNEQ ¶
func PrefixNEQ(v string) predicate.EntityContactPoint
PrefixNEQ applies the NEQ predicate on the "prefix" field.
func PrefixNotIn ¶
func PrefixNotIn(vs ...string) predicate.EntityContactPoint
PrefixNotIn applies the NotIn predicate on the "prefix" field.
func PrefixNotNil ¶
func PrefixNotNil() predicate.EntityContactPoint
PrefixNotNil applies the NotNil predicate on the "prefix" field.
func Suffix ¶
func Suffix(v string) predicate.EntityContactPoint
Suffix applies equality check predicate on the "suffix" field. It's identical to SuffixEQ.
func SuffixContains ¶
func SuffixContains(v string) predicate.EntityContactPoint
SuffixContains applies the Contains predicate on the "suffix" field.
func SuffixContainsFold ¶
func SuffixContainsFold(v string) predicate.EntityContactPoint
SuffixContainsFold applies the ContainsFold predicate on the "suffix" field.
func SuffixEQ ¶
func SuffixEQ(v string) predicate.EntityContactPoint
SuffixEQ applies the EQ predicate on the "suffix" field.
func SuffixEqualFold ¶
func SuffixEqualFold(v string) predicate.EntityContactPoint
SuffixEqualFold applies the EqualFold predicate on the "suffix" field.
func SuffixGT ¶
func SuffixGT(v string) predicate.EntityContactPoint
SuffixGT applies the GT predicate on the "suffix" field.
func SuffixGTE ¶
func SuffixGTE(v string) predicate.EntityContactPoint
SuffixGTE applies the GTE predicate on the "suffix" field.
func SuffixHasPrefix ¶
func SuffixHasPrefix(v string) predicate.EntityContactPoint
SuffixHasPrefix applies the HasPrefix predicate on the "suffix" field.
func SuffixHasSuffix ¶
func SuffixHasSuffix(v string) predicate.EntityContactPoint
SuffixHasSuffix applies the HasSuffix predicate on the "suffix" field.
func SuffixIn ¶
func SuffixIn(vs ...string) predicate.EntityContactPoint
SuffixIn applies the In predicate on the "suffix" field.
func SuffixIsNil ¶
func SuffixIsNil() predicate.EntityContactPoint
SuffixIsNil applies the IsNil predicate on the "suffix" field.
func SuffixLT ¶
func SuffixLT(v string) predicate.EntityContactPoint
SuffixLT applies the LT predicate on the "suffix" field.
func SuffixLTE ¶
func SuffixLTE(v string) predicate.EntityContactPoint
SuffixLTE applies the LTE predicate on the "suffix" field.
func SuffixNEQ ¶
func SuffixNEQ(v string) predicate.EntityContactPoint
SuffixNEQ applies the NEQ predicate on the "suffix" field.
func SuffixNotIn ¶
func SuffixNotIn(vs ...string) predicate.EntityContactPoint
SuffixNotIn applies the NotIn predicate on the "suffix" field.
func SuffixNotNil ¶
func SuffixNotNil() predicate.EntityContactPoint
SuffixNotNil applies the NotNil predicate on the "suffix" field.
func TypeEQ ¶
func TypeEQ(v Type) predicate.EntityContactPoint
TypeEQ applies the EQ predicate on the "type" field.
func TypeIn ¶
func TypeIn(vs ...Type) predicate.EntityContactPoint
TypeIn applies the In predicate on the "type" field.
func TypeNEQ ¶
func TypeNEQ(v Type) predicate.EntityContactPoint
TypeNEQ applies the NEQ predicate on the "type" field.
func TypeNotIn ¶
func TypeNotIn(vs ...Type) predicate.EntityContactPoint
TypeNotIn applies the NotIn predicate on the "type" field.
func TypeValidator ¶
TypeValidator is a validator for the "type" field enum values. It is called by the builders before save.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
func Value ¶
func Value(v string) predicate.EntityContactPoint
Value applies equality check predicate on the "value" field. It's identical to ValueEQ.
func ValueContains ¶
func ValueContains(v string) predicate.EntityContactPoint
ValueContains applies the Contains predicate on the "value" field.
func ValueContainsFold ¶
func ValueContainsFold(v string) predicate.EntityContactPoint
ValueContainsFold applies the ContainsFold predicate on the "value" field.
func ValueEQ ¶
func ValueEQ(v string) predicate.EntityContactPoint
ValueEQ applies the EQ predicate on the "value" field.
func ValueEqualFold ¶
func ValueEqualFold(v string) predicate.EntityContactPoint
ValueEqualFold applies the EqualFold predicate on the "value" field.
func ValueGT ¶
func ValueGT(v string) predicate.EntityContactPoint
ValueGT applies the GT predicate on the "value" field.
func ValueGTE ¶
func ValueGTE(v string) predicate.EntityContactPoint
ValueGTE applies the GTE predicate on the "value" field.
func ValueHasPrefix ¶
func ValueHasPrefix(v string) predicate.EntityContactPoint
ValueHasPrefix applies the HasPrefix predicate on the "value" field.
func ValueHasSuffix ¶
func ValueHasSuffix(v string) predicate.EntityContactPoint
ValueHasSuffix applies the HasSuffix predicate on the "value" field.
func ValueIn ¶
func ValueIn(vs ...string) predicate.EntityContactPoint
ValueIn applies the In predicate on the "value" field.
func ValueLT ¶
func ValueLT(v string) predicate.EntityContactPoint
ValueLT applies the LT predicate on the "value" field.
func ValueLTE ¶
func ValueLTE(v string) predicate.EntityContactPoint
ValueLTE applies the LTE predicate on the "value" field.
func ValueNEQ ¶
func ValueNEQ(v string) predicate.EntityContactPoint
ValueNEQ applies the NEQ predicate on the "value" field.
func ValueNotIn ¶
func ValueNotIn(vs ...string) predicate.EntityContactPoint
ValueNotIn applies the NotIn predicate on the "value" field.