public enum Manufacturer extends Enum<Manufacturer>
Enum Constant and Description |
---|
AOL
AOL LLC.
|
APPLE
Apple Inc.
|
BLACKBERRY
Research In Motion Limited
|
COMPUSERVE
CompuServe Interactive Services, Inc.
|
GOOGLE
Google Inc.
|
MICROSOFT
Microsoft Corporation
|
MMC
Mail.com Media Corporation
|
MOZILLA
Mozilla Foundation
|
NINTENDO
Nintendo
|
NOKIA
Nokia Corporation
|
OPERA
Opera Software ASA
|
OTHER
Unknow or rare manufacturer
|
PALM
Palm, Inc.
|
SONY
Sony Computer Entertainment, Inc.
|
SONY_ERICSSON
Sony Ericsson Mobile Communications AB
|
SUN
Sun Microsystems, Inc.
|
SYMBIAN
Symbian Ltd.
|
YAHOO
Yahoo Inc.
|
Modifier and Type | Method and Description |
---|---|
byte |
getId() |
String |
getName() |
static Manufacturer |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Manufacturer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Manufacturer OTHER
public static final Manufacturer MICROSOFT
public static final Manufacturer APPLE
public static final Manufacturer SUN
public static final Manufacturer SYMBIAN
public static final Manufacturer NOKIA
public static final Manufacturer BLACKBERRY
public static final Manufacturer PALM
public static final Manufacturer SONY_ERICSSON
public static final Manufacturer SONY
public static final Manufacturer NINTENDO
public static final Manufacturer OPERA
public static final Manufacturer MOZILLA
public static final Manufacturer GOOGLE
public static final Manufacturer COMPUSERVE
public static final Manufacturer YAHOO
public static final Manufacturer AOL
public static final Manufacturer MMC
public static Manufacturer[] values()
for (Manufacturer c : Manufacturer.values()) System.out.println(c);
public static Manufacturer valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic byte getId()
public String getName()
Copyright © 2018. All rights reserved.