package com.metaio.sdk.jni;

import java.io.File;

public class JunaioDataSource
{
  protected boolean swigCMemOwn;
  private long swigCPtr;

  public JunaioDataSource()
  {
    this(MetaioSDKJNI.new_JunaioDataSource__SWIG_0(), true);
  }

  public JunaioDataSource(long paramLong, boolean paramBoolean)
  {
    this.swigCMemOwn = paramBoolean;
    this.swigCPtr = paramLong;
  }

  public JunaioDataSource(JunaioDataSource paramJunaioDataSource)
  {
    this(MetaioSDKJNI.new_JunaioDataSource__SWIG_2(getCPtr(paramJunaioDataSource), paramJunaioDataSource), true);
  }

  public JunaioDataSource(String paramString1, String paramString2, String paramString3)
  {
    this(MetaioSDKJNI.new_JunaioDataSource__SWIG_1(paramString1, paramString2, paramString3), true);
  }

  public static long getCPtr(JunaioDataSource paramJunaioDataSource)
  {
    if (paramJunaioDataSource == null)
      return 0L;
    return paramJunaioDataSource.swigCPtr;
  }

  public void cancelAllRequests()
  {
    MetaioSDKJNI.JunaioDataSource_cancelAllRequests(this.swigCPtr, this);
  }

  public void clearAllFilterParameters()
  {
    MetaioSDKJNI.JunaioDataSource_clearAllFilterParameters(this.swigCPtr, this);
  }

  public void delete()
  {
    try
    {
      if (this.swigCPtr != 0L)
      {
        if (this.swigCMemOwn)
        {
          this.swigCMemOwn = false;
          MetaioSDKJNI.delete_JunaioDataSource(this.swigCPtr);
        }
        this.swigCPtr = 0L;
      }
      return;
    }
    finally
    {
    }
  }

  public void deleteLocalFileCache()
  {
    MetaioSDKJNI.JunaioDataSource_deleteLocalFileCache(this.swigCPtr, this);
  }

  protected void finalize()
  {
    delete();
  }

  public long getAllPOIsCount()
  {
    return MetaioSDKJNI.JunaioDataSource_getAllPOIsCount(this.swigCPtr, this);
  }

  public IARELObjectVector getAllPOIsForMapAndList()
  {
    return new IARELObjectVector(MetaioSDKJNI.JunaioDataSource_getAllPOIsForMapAndList(this.swigCPtr, this), true);
  }

  public int getCurrentChannelID()
  {
    return MetaioSDKJNI.JunaioDataSource_getCurrentChannelID(this.swigCPtr, this);
  }

  public LLACoordinate getCurrentPosition()
  {
    return new LLACoordinate(MetaioSDKJNI.JunaioDataSource_getCurrentPosition(this.swigCPtr, this), true);
  }

  public String getFilterValueForKey(String paramString)
  {
    return MetaioSDKJNI.JunaioDataSource_getFilterValueForKey(this.swigCPtr, this, paramString);
  }

  public MetaioWorldClientCURL getJunaioClient()
  {
    long l = MetaioSDKJNI.JunaioDataSource_getJunaioClient(this.swigCPtr, this);
    if (l == 0L)
      return null;
    return new MetaioWorldClientCURL(l, false);
  }

  public float getMaximumPoiDistance()
  {
    return MetaioSDKJNI.JunaioDataSource_getMaximumPoiDistance(this.swigCPtr, this);
  }

  public IARELObject getPOIForGeometry(IGeometry paramIGeometry)
  {
    long l = MetaioSDKJNI.JunaioDataSource_getPOIForGeometry(this.swigCPtr, this, IGeometry.getCPtr(paramIGeometry), paramIGeometry);
    if (l == 0L)
      return null;
    return new IARELObject(l, false);
  }

  public IARELObject getPOIForID(String paramString)
  {
    long l = MetaioSDKJNI.JunaioDataSource_getPOIForID__SWIG_1(this.swigCPtr, this, paramString);
    if (l == 0L)
      return null;
    return new IARELObject(l, false);
  }

  public IARELObject getPOIForID(String paramString, boolean paramBoolean)
  {
    long l = MetaioSDKJNI.JunaioDataSource_getPOIForID__SWIG_0(this.swigCPtr, this, paramString, paramBoolean);
    if (l == 0L)
      return null;
    return new IARELObject(l, false);
  }

  public void initMembers()
  {
    MetaioSDKJNI.JunaioDataSource_initMembers(this.swigCPtr, this);
  }

  public boolean isScanModeEnabled()
  {
    return MetaioSDKJNI.JunaioDataSource_isScanModeEnabled(this.swigCPtr, this);
  }

  public void loadChannelInformationFromID(long paramLong)
  {
    MetaioSDKJNI.JunaioDataSource_loadChannelInformationFromID(this.swigCPtr, this, paramLong);
  }

  public void loadPOIsAndChannelInformationForID(long paramLong)
  {
    MetaioSDKJNI.JunaioDataSource_loadPOIsAndChannelInformationForID(this.swigCPtr, this, paramLong);
  }

  public void loadPOIsFromChannelID(long paramLong)
  {
    MetaioSDKJNI.JunaioDataSource_loadPOIsFromChannelID(this.swigCPtr, this, paramLong);
  }

  public boolean loadPOIsFromFile(File paramFile)
  {
    return MetaioSDKJNI.JunaioDataSource_loadPOIsFromFile__SWIG_1(this.swigCPtr, this, paramFile);
  }

  public boolean loadPOIsFromFile(File paramFile1, File paramFile2)
  {
    return MetaioSDKJNI.JunaioDataSource_loadPOIsFromFile__SWIG_0(this.swigCPtr, this, paramFile1, paramFile2);
  }

  public void loadPOIsFromImage(long paramLong, ByteBuffer paramByteBuffer)
  {
    MetaioSDKJNI.JunaioDataSource_loadPOIsFromImage(this.swigCPtr, this, paramLong, ByteBuffer.getCPtr(paramByteBuffer), paramByteBuffer);
  }

  public void onDidUpdatePosition(LLACoordinate paramLLACoordinate)
  {
    MetaioSDKJNI.JunaioDataSource_onDidUpdatePosition(this.swigCPtr, this, LLACoordinate.getCPtr(paramLLACoordinate), paramLLACoordinate);
  }

  public void onLoadingARELComplete(boolean paramBoolean)
  {
    MetaioSDKJNI.JunaioDataSource_onLoadingARELComplete(this.swigCPtr, this, paramBoolean);
  }

  public void onLoadingObjectComplete(LoadingQueueEntry paramLoadingQueueEntry, String paramString, boolean paramBoolean)
  {
    MetaioSDKJNI.JunaioDataSource_onLoadingObjectComplete(this.swigCPtr, this, paramLoadingQueueEntry.swigValue(), paramString, paramBoolean);
  }

  public void onMetaioWorldRequestFinished(int paramInt, MetaioWorldRequest paramMetaioWorldRequest)
  {
    MetaioSDKJNI.JunaioDataSource_onMetaioWorldRequestFinished(this.swigCPtr, this, paramInt, MetaioWorldRequest.getCPtr(paramMetaioWorldRequest), paramMetaioWorldRequest);
  }

  public boolean performChannelSearch(E_DatasourceChannelSearchType paramE_DatasourceChannelSearchType, int paramInt1, int paramInt2, String paramString)
  {
    return MetaioSDKJNI.JunaioDataSource_performChannelSearch(this.swigCPtr, this, paramE_DatasourceChannelSearchType.swigValue(), paramInt1, paramInt2, paramString);
  }

  public DatasourceChannelSearchResult performChannelSearchSync(E_DatasourceChannelSearchType paramE_DatasourceChannelSearchType, int paramInt1, int paramInt2, String paramString)
  {
    return new DatasourceChannelSearchResult(MetaioSDKJNI.JunaioDataSource_performChannelSearchSync(this.swigCPtr, this, paramE_DatasourceChannelSearchType.swigValue(), paramInt1, paramInt2, paramString), true);
  }

  public IARELObjectVector performPoisSearchRequestAtLocation(int paramInt1, LLACoordinate paramLLACoordinate, int paramInt2)
  {
    return new IARELObjectVector(MetaioSDKJNI.JunaioDataSource_performPoisSearchRequestAtLocation(this.swigCPtr, this, paramInt1, LLACoordinate.getCPtr(paramLLACoordinate), paramLLACoordinate, paramInt2), true);
  }

  public void removeContent()
  {
    MetaioSDKJNI.JunaioDataSource_removeContent__SWIG_1(this.swigCPtr, this);
  }

  public void removeContent(boolean paramBoolean)
  {
    MetaioSDKJNI.JunaioDataSource_removeContent__SWIG_0(this.swigCPtr, this, paramBoolean);
  }

  public boolean removeObjectWithID(String paramString)
  {
    return MetaioSDKJNI.JunaioDataSource_removeObjectWithID(this.swigCPtr, this, paramString);
  }

  public void sendMetaioWorldRequestInternal(MetaioWorldRequest paramMetaioWorldRequest)
  {
    MetaioSDKJNI.JunaioDataSource_sendMetaioWorldRequestInternal(this.swigCPtr, this, MetaioWorldRequest.getCPtr(paramMetaioWorldRequest), paramMetaioWorldRequest);
  }

  public void setAuthentication(String paramString1, String paramString2)
  {
    MetaioSDKJNI.JunaioDataSource_setAuthentication(this.swigCPtr, this, paramString1, paramString2);
  }

  public void setChannel(MetaioWorldChannel paramMetaioWorldChannel)
  {
    MetaioSDKJNI.JunaioDataSource_setChannel(this.swigCPtr, this, MetaioWorldChannel.getCPtr(paramMetaioWorldChannel), paramMetaioWorldChannel);
  }

  public void setDelegate(IARELDatasourceDelegate paramIARELDatasourceDelegate)
  {
    MetaioSDKJNI.JunaioDataSource_setDelegate(this.swigCPtr, this, IARELDatasourceDelegate.getCPtr(paramIARELDatasourceDelegate), paramIARELDatasourceDelegate);
  }

  public void setFilterValue(String paramString1, String paramString2)
  {
    MetaioSDKJNI.JunaioDataSource_setFilterValue(this.swigCPtr, this, paramString1, paramString2);
  }

  public void setPositionOverride(LLACoordinate paramLLACoordinate)
  {
    MetaioSDKJNI.JunaioDataSource_setPositionOverride(this.swigCPtr, this, LLACoordinate.getCPtr(paramLLACoordinate), paramLLACoordinate);
  }

  public void setScanModeEnabled(boolean paramBoolean)
  {
    MetaioSDKJNI.JunaioDataSource_setScanModeEnabled(this.swigCPtr, this, paramBoolean);
  }

  public void triggerLoadingCameraCalibration(String paramString, boolean paramBoolean, ECAMERA_TYPE paramECAMERA_TYPE)
  {
    MetaioSDKJNI.JunaioDataSource_triggerLoadingCameraCalibration(this.swigCPtr, this, paramString, paramBoolean, paramECAMERA_TYPE.swigValue());
  }

  public void triggerLoadingEnvMapfromURL(String paramString)
  {
    MetaioSDKJNI.JunaioDataSource_triggerLoadingEnvMapfromURL(this.swigCPtr, this, paramString);
  }

  public void triggerLoadingShaderMaterialsfromURL(String paramString1, String paramString2)
  {
    MetaioSDKJNI.JunaioDataSource_triggerLoadingShaderMaterialsfromURL(this.swigCPtr, this, paramString1, paramString2);
  }

  public void triggerLoadingTrackingConfigurationFromURL(String paramString)
  {
    MetaioSDKJNI.JunaioDataSource_triggerLoadingTrackingConfigurationFromURL(this.swigCPtr, this, paramString);
  }

  public void triggerSetHandEyeCalibrationFromFileURL(String paramString1, String paramString2)
  {
    MetaioSDKJNI.JunaioDataSource_triggerSetHandEyeCalibrationFromFileURL(this.swigCPtr, this, paramString1, paramString2);
  }

  public boolean update()
  {
    return MetaioSDKJNI.JunaioDataSource_update(this.swigCPtr, this);
  }

  public boolean updateChannelSearches(DatasourceChannelSearchResult paramDatasourceChannelSearchResult)
  {
    return MetaioSDKJNI.JunaioDataSource_updateChannelSearches(this.swigCPtr, this, DatasourceChannelSearchResult.getCPtr(paramDatasourceChannelSearchResult), paramDatasourceChannelSearchResult);
  }
}

/* Location:           C:\Documents and Settings\Cesar Cabello Cea\Mis documentos\Downloads\apk-downloader\com.ikea.kompis-6_dex2jar.jar
 * Qualified Name:     com.metaio.sdk.jni.JunaioDataSource
 * JD-Core Version:    0.6.2
 */