public final enum

FlyZoneType

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ dji.common.flightcontroller.FlyZoneType

Class Overview

An enum class contains the type of the fly zone.

Summary

Enum Values
FlyZoneType  Airport  Airport that cannot be unlocked using GEO system. 
FlyZoneType  ClassBAirSpace  Class B controlled airspace. 
FlyZoneType  ClassCAirSpace  Class C controlled airspace. 
FlyZoneType  ClassDAirSpace  Class D controlled airspace. 
FlyZoneType  ClassEAirSpace  Class E controlled airspace. 
FlyZoneType  CommercialAirports  Commercial airports. 
FlyZoneType  Heliport  Heliport. 
FlyZoneType  MilitaryZones  Military authorized zone. 
FlyZoneType  NOAA  The National Oceanic and Atmospheric Administration. 
FlyZoneType  NationalParks  National parks. 
FlyZoneType  Parcels  Parcels. 
FlyZoneType  PowerPlants  Power plants. 
FlyZoneType  Prisons  Prisons. 
FlyZoneType  PrivateCommercialAirports  Private commercial airports. 
FlyZoneType  ProhibitedSpecialUse  Prohibited special use. 
FlyZoneType  RecreationalAirports  Recreational airports. 
FlyZoneType  RestrictedSpecialUse  Restriction special use. 
FlyZoneType  Schools  Schools. 
FlyZoneType  SpecialZones  Special Zone. 
FlyZoneType  Stadiums  Stadiums. 
FlyZoneType  TemporaryFlightRestrictions  Temporary flight restrictions. 
FlyZoneType  Unknown  Unknown. 
FlyZoneType  UnpavedAirport  Airport with unpaved runway. 
Public Methods
boolean _equals(int b)
Returns the boolean result which compare the input integer value with the real value of a enum constant.
static FlyZoneType find(int b)
Returns the enum constant of this type with the specified integer value.
int value()
Returns the real value of an enum constant.
static FlyZoneType valueOf(String name)
final static FlyZoneType[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final FlyZoneType Airport

Airport that cannot be unlocked using GEO system.

public static final FlyZoneType ClassBAirSpace

Class B controlled airspace. See http://www.dji.com/flysafe/geo-system#notes for more information on the controlled airspace (Class B, C, D, E) in the United States.

public static final FlyZoneType ClassCAirSpace

Class C controlled airspace. See http://www.dji.com/flysafe/geo-system#notes for more information on the controlled airspace (Class B, C, D, E) in the United States.

public static final FlyZoneType ClassDAirSpace

Class D controlled airspace. See http://www.dji.com/flysafe/geo-system#notes for more information on the controlled airspace (Class B, C, D, E) in the United States.

public static final FlyZoneType ClassEAirSpace

Class E controlled airspace. See http://www.dji.com/flysafe/geo-system#notes for more information on the controlled airspace (Class B, C, D, E) in the United States.

public static final FlyZoneType CommercialAirports

Commercial airports.

public static final FlyZoneType Heliport

Heliport.

public static final FlyZoneType MilitaryZones

Military authorized zone. This cannot be unlocked using the GEO system.

public static final FlyZoneType NOAA

The National Oceanic and Atmospheric Administration.

public static final FlyZoneType NationalParks

National parks.

public static final FlyZoneType Parcels

Parcels.

public static final FlyZoneType PowerPlants

Power plants.

public static final FlyZoneType Prisons

Prisons.

public static final FlyZoneType PrivateCommercialAirports

Private commercial airports.

public static final FlyZoneType ProhibitedSpecialUse

Prohibited special use.

public static final FlyZoneType RecreationalAirports

Recreational airports.

public static final FlyZoneType RestrictedSpecialUse

Restriction special use.

public static final FlyZoneType Schools

Schools.

public static final FlyZoneType SpecialZones

Special Zone. This cannot be unlocked using the GEO system.

public static final FlyZoneType Stadiums

Stadiums.

public static final FlyZoneType TemporaryFlightRestrictions

Temporary flight restrictions.

public static final FlyZoneType Unknown

Unknown.

public static final FlyZoneType UnpavedAirport

Airport with unpaved runway.

Public Methods

public boolean _equals (int b)

Returns the boolean result which compare the input integer value with the real value of a enum constant.

Parameters
b The input integer value.
Returns
  • boolean The compared result.

public static FlyZoneType find (int b)

Returns the enum constant of this type with the specified integer value.

Parameters
b The integer value.
Returns
  • DJICompassCalibrationStatus The enum constant of this type.

public int value ()

Returns the real value of an enum constant.

Returns
  • integer The real value.

public static FlyZoneType valueOf (String name)

public static final FlyZoneType[] values ()