Logo
Developer SDK
Version 1.9.632.913d652c-152450467.
Venue Class Reference

Inherits ContentObject.

Public Member Functions

String getRecordId ()
 
String getmVenueName ()
 
String getmVenueAddress ()
 
 Venue (Parcel in, int parcelVersion)
 
void writeToParcel (Parcel dest, int flags)
 
 Venue (Context context, Cursor cursor)
 

Static Public Attributes

static final String VENUE_NAME_COLUMN = "NAME"
 
static final String VENUE_ADDRESES_COLUMN = "ADDRESS"
 
static final Creator< VenueCREATOR
 

Detailed Description

Represents a venue/store.

Definition at line 13 of file Venue.java.

Member Data Documentation

◆ CREATOR

final Creator<Venue> CREATOR
static
Initial value:
= new Venue.ParcelCreator<Venue>() {
@Override
public Venue createFromParcel(Parcel source) {
BaseParcel createdObject = super.createFromParcel(source);
if (createdObject == null || !Venue.class.isInstance(createdObject)) {
return new Venue(source, getRecommendedParcelVersion());
} else {
return (Venue) createdObject;
}
}
@Override
public Venue[] newArray(int size) {
return new Venue[size];
}
}

Definition at line 57 of file Venue.java.

◆ VENUE_ADDRESES_COLUMN

final String VENUE_ADDRESES_COLUMN = "ADDRESS"
static

The column name for the venue's address.

Definition at line 23 of file Venue.java.

◆ VENUE_NAME_COLUMN

final String VENUE_NAME_COLUMN = "NAME"
static

The column name for the venue's name.

Definition at line 18 of file Venue.java.


The documentation for this class was generated from the following file:

This document is the confidential property of Verifone, Inc. Any reproduction or distribution of this document, in whole or in part, or the disclosure of any of the information contained herein, without the prior written consent of Verifone, Inc. is prohibited. This document and any supplemental material supplied as part of any review must be returned to Verifone, Inc. upon request. Notice: This document may go through material revisions over time. While the Company will make every effort to keep readers updated as changes occur, care must be taken by the reader to make sure they are reading the latest version. Version numbers appear in the title page and revision history page of this document. All rights reserved. Verifone, the Verifone logo are either trademarks or registered trademarks of Verifone in the United States and/or other countries. All other trademarks or brand names are properties of their respective holders.