public enum Identity extends Enum<Identity>
| Enum Constant and Description |
|---|
ASSUMED_FRIEND
Per STANAG 1241 - a track, object or entity which is assumed to be friend or neutral because of
its characteristics, behavior or origin.
|
FRIEND
Per STANAG 1241 - an allied/coalition military track, object or entity; - a track, object or
entity, supporting friendly forces and belonging to an allied/coalition nation or a declared or
recognized friendly faction or group.
|
HOSTILE
Per STANAG 1241 - a track, object or entity whose characteristics, behavior or origin indicate
that it belongs to opposing forces or poses a threat to friendly forces or their mission.
|
NEUTRAL
Per STANAG 1241 - military or civilian track, object or entity, neither belonging to
allied/coalition military forces nor to opposing military forces, whose characteristics,
behavior, origin or nationality indicates that it is neither supporting nor opposing friendly
forces or their mission.
|
SUSPECT
Per STANAG 1241 - a track, object or entity whose characteristics, behavior or origin indicate
that it potentially belongs to opposing forces or potentially poses a threat to friendly forces
or their mission.
|
UNKNOWN
Per STANAG 1241 - an evaluated track, object or entity, which does not meet the criteria for
any other standard identity.
|
| Modifier and Type | Method and Description |
|---|---|
static Identity |
fromString(String value) |
String |
toString() |
static Identity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Identity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Identity UNKNOWN
public static final Identity ASSUMED_FRIEND
public static final Identity FRIEND
public static final Identity NEUTRAL
public static final Identity SUSPECT
public static final Identity HOSTILE
public static Identity[] values()
for (Identity c : Identity.values()) System.out.println(c);
public static Identity 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 nullCopyright © 2013–2019. All rights reserved.