This site has been permanently archived. The content on this site was last updated in 2019.
Version
Simple wrapper class for the semantic (major/minor/patch) version of the SDK.
Fields
public
static
final
Version |
CURRENT |
The current Google VR SDK version. |
public
static
final
Version |
MIN |
The minimum version of Google VR SDK dynamically loaded from VrCore compatible with this SDK's
client stubs. |
public
final
int |
majorVersion |
|
public
final
int |
minorVersion |
|
public
final
int |
patchVersion |
|
Inherited Methods
From class
java.lang.Object
boolean
|
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
Constants
public
static
final
String
TAG
Constant Value:
"Version"
Fields
public
static
final
Version
CURRENT
The current Google VR SDK version.
public
static
final
Version
MIN
The minimum version of Google VR SDK dynamically loaded from VrCore compatible with this SDK's
client stubs.
public
final
int
majorVersion
public
final
int
minorVersion
public
final
int
patchVersion
Public Methods
public
boolean
equals
(Object other)
All rights reserved. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-10-09 UTC.
[null,null,["Last updated 2024-10-09 UTC."],[[["`Version` is a simple wrapper class representing the semantic version (major, minor, patch) of the Google VR SDK."],["It provides access to the current SDK version (`CURRENT`) and the minimum compatible version (`MIN`)."],["Each `Version` instance contains the major, minor, and patch version numbers."],["Standard methods like `equals`, `hashCode`, and `toString` are available for version comparison and representation."]]],["The `Version` class represents the Google VR SDK's semantic version, including major, minor, and patch numbers. Key fields include `CURRENT` (current SDK version) and `MIN` (minimum compatible VrCore version). Publicly accessible version components are `majorVersion`, `minorVersion`, and `patchVersion`. The class also defines `equals`, `hashCode`, and `toString` methods for comparison, hashing, and string representation of version objects, along with a constant String TAG with the value \"Version\".\n"]]