MINI MINI MANI MO
%
% Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
%
\name{is.ore}
\alias{is.ore}
\alias{is.ore.vector}
\alias{is.ore.logical}
\alias{is.ore.integer}
\alias{is.ore.numeric}
\alias{is.ore.character}
\alias{is.ore.factor}
\alias{is.ore.date}
\alias{is.ore.datetime}
\alias{is.ore.difftime}
\alias{is.ore.frame}
\alias{is.ore.matrix}
\title{Oracle R Enterprise Type Checking Functions}
\description{
Returns logical value \code{TRUE} if the \code{x} argument is an
object of the type named in the function; otherwise returns logical
value \code{FALSE}.
}
\usage{
is.ore(x)
is.ore.vector(x)
is.ore.logical(x)
is.ore.integer(x)
is.ore.numeric(x)
is.ore.character(x)
is.ore.factor(x)
is.ore.date(x)
is.ore.datetime(x)
is.ore.difftime(x)
is.ore.frame(x)
is.ore.matrix(x)
}
\arguments{
\item{x}{
An object.
}
}
\value{
The logical value \code{TRUE} if the \code{x} argument is an
\code{\linkS4class{ore}} object of the specified type, or the logical
value \code{FALSE} otherwise.
}
\references{
\href{http://www.oracle.com/technetwork/database/database-technologies/r/r-enterprise/documentation/index.html}{Oracle R Enterprise}
}
\author{
Oracle \email{oracle-r-enterprise@oracle.com}
}
\seealso{
\code{\linkS4class{ore}},
\code{\link{as.ore}},
\code{\link[base]{is.vector}}
}
\examples{
df <- data.frame(A = 1:26, B = letters)
is.ore(df)
oreDF <- as.ore(df)
is.ore(oreDF)
}
\keyword{classes}
\keyword{database}
\keyword{ORE}
OHA YOOOO