Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (C) 2013-2015 RoboVM AB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.bugvm.apple.healthkit;
/**/
import java.io.*;
import java.nio.*;
import java.util.*;
import com.bugvm.objc.*;
import com.bugvm.objc.annotation.*;
import com.bugvm.objc.block.*;
import com.bugvm.rt.*;
import com.bugvm.rt.annotation.*;
import com.bugvm.rt.bro.*;
import com.bugvm.rt.bro.annotation.*;
import com.bugvm.rt.bro.ptr.*;
import com.bugvm.apple.foundation.*;
/**/
/**/
/**/
/**/@Library("HealthKit") @StronglyLinked/**/
@Marshaler(/**/HKPredicateKeyPath/**/.Marshaler.class)
/**/public/**/ class /**/HKPredicateKeyPath/**/
extends /**/NSPredicateKeyPath/**/
/**//**/ {
static { Bro.bind(/**/HKPredicateKeyPath/**/.class); }
/**/
public static class Marshaler {
@MarshalsPointer
public static HKPredicateKeyPath toObject(Class cls, long handle, long flags) {
NSString o = (NSString) NSObject.Marshaler.toObject(NSString.class, handle, flags);
if (o == null) {
return null;
}
return HKPredicateKeyPath.valueOf(o);
}
@MarshalsPointer
public static long toNative(HKPredicateKeyPath o, long flags) {
if (o == null) {
return 0L;
}
return NSObject.Marshaler.toNative(o.value(), flags);
}
}
public static class AsListMarshaler {
@SuppressWarnings("unchecked")
@MarshalsPointer
public static List toObject(Class extends NSObject> cls, long handle, long flags) {
NSArray o = (NSArray) NSObject.Marshaler.toObject(NSArray.class, handle, flags);
if (o == null) {
return null;
}
List list = new ArrayList<>();
for (int i = 0; i < o.size(); i++) {
list.add(HKPredicateKeyPath.valueOf(o.get(i)));
}
return list;
}
@MarshalsPointer
public static long toNative(List l, long flags) {
if (l == null) {
return 0L;
}
NSArray array = new NSMutableArray<>();
for (HKPredicateKeyPath o : l) {
array.add(o.value());
}
return NSObject.Marshaler.toNative(array, flags);
}
}
/**/
/**/
/**
* @since Available in iOS 8.0 and later.
*/
public static final HKPredicateKeyPath UUID = new HKPredicateKeyPath("UUID");
/**
* @since Available in iOS 8.0 and later.
*/
public static final HKPredicateKeyPath Source = new HKPredicateKeyPath("Source");
/**
* @since Available in iOS 8.0 and later.
*/
public static final HKPredicateKeyPath Metadata = new HKPredicateKeyPath("Metadata");
/**
* @since Available in iOS 8.0 and later.
*/
public static final HKPredicateKeyPath Correlation = new HKPredicateKeyPath("Correlation");
/**
* @since Available in iOS 8.0 and later.
*/
public static final HKPredicateKeyPath Workout = new HKPredicateKeyPath("Workout");
/**
* @since Available in iOS 8.0 and later.
*/
public static final HKPredicateKeyPath StartDate = new HKPredicateKeyPath("StartDate");
/**
* @since Available in iOS 8.0 and later.
*/
public static final HKPredicateKeyPath EndDate = new HKPredicateKeyPath("EndDate");
/**
* @since Available in iOS 8.0 and later.
*/
public static final HKPredicateKeyPath WorkoutDuration = new HKPredicateKeyPath("WorkoutDuration");
/**
* @since Available in iOS 8.0 and later.
*/
public static final HKPredicateKeyPath WorkoutTotalDistance = new HKPredicateKeyPath("WorkoutTotalDistance");
/**
* @since Available in iOS 8.0 and later.
*/
public static final HKPredicateKeyPath WorkoutTotalEnergyBurned = new HKPredicateKeyPath("WorkoutTotalEnergyBurned");
/**
* @since Available in iOS 8.0 and later.
*/
public static final HKPredicateKeyPath WorkoutType = new HKPredicateKeyPath("WorkoutType");
/**
* @since Available in iOS 8.0 and later.
*/
public static final HKPredicateKeyPath CategoryValue = new HKPredicateKeyPath("CategoryValue");
/**
* @since Available in iOS 8.0 and later.
*/
public static final HKPredicateKeyPath Quantity = new HKPredicateKeyPath("Quantity");
/**/
private static /**/HKPredicateKeyPath/**/[] values = new /**/HKPredicateKeyPath/**/[] {/**/UUID, Source, Metadata, Correlation, Workout, StartDate, EndDate, WorkoutDuration, WorkoutTotalDistance, WorkoutTotalEnergyBurned, WorkoutType, CategoryValue, Quantity/**/};
/**/HKPredicateKeyPath/**/ (String getterName) {
super(Values.class, getterName);
}
public static /**/HKPredicateKeyPath/**/ valueOf(/**/NSString/**/ value) {
for (/**/HKPredicateKeyPath/**/ v : values) {
if (v.value().equals(value)) {
return v;
}
}
throw new IllegalArgumentException("No constant with value " + value + " found in "
+ /**/HKPredicateKeyPath/**/.class.getName());
}
/**//**/
/**/@Library("HealthKit") @StronglyLinked/**/
public static class Values {
static { Bro.bind(Values.class); }
/**/
/**
* @since Available in iOS 8.0 and later.
*/
@GlobalValue(symbol="HKPredicateKeyPathUUID", optional=true)
public static native NSString UUID();
/**
* @since Available in iOS 8.0 and later.
*/
@GlobalValue(symbol="HKPredicateKeyPathSource", optional=true)
public static native NSString Source();
/**
* @since Available in iOS 8.0 and later.
*/
@GlobalValue(symbol="HKPredicateKeyPathMetadata", optional=true)
public static native NSString Metadata();
/**
* @since Available in iOS 8.0 and later.
*/
@GlobalValue(symbol="HKPredicateKeyPathCorrelation", optional=true)
public static native NSString Correlation();
/**
* @since Available in iOS 8.0 and later.
*/
@GlobalValue(symbol="HKPredicateKeyPathWorkout", optional=true)
public static native NSString Workout();
/**
* @since Available in iOS 8.0 and later.
*/
@GlobalValue(symbol="HKPredicateKeyPathStartDate", optional=true)
public static native NSString StartDate();
/**
* @since Available in iOS 8.0 and later.
*/
@GlobalValue(symbol="HKPredicateKeyPathEndDate", optional=true)
public static native NSString EndDate();
/**
* @since Available in iOS 8.0 and later.
*/
@GlobalValue(symbol="HKPredicateKeyPathWorkoutDuration", optional=true)
public static native NSString WorkoutDuration();
/**
* @since Available in iOS 8.0 and later.
*/
@GlobalValue(symbol="HKPredicateKeyPathWorkoutTotalDistance", optional=true)
public static native NSString WorkoutTotalDistance();
/**
* @since Available in iOS 8.0 and later.
*/
@GlobalValue(symbol="HKPredicateKeyPathWorkoutTotalEnergyBurned", optional=true)
public static native NSString WorkoutTotalEnergyBurned();
/**
* @since Available in iOS 8.0 and later.
*/
@GlobalValue(symbol="HKPredicateKeyPathWorkoutType", optional=true)
public static native NSString WorkoutType();
/**
* @since Available in iOS 8.0 and later.
*/
@GlobalValue(symbol="HKPredicateKeyPathCategoryValue", optional=true)
public static native NSString CategoryValue();
/**
* @since Available in iOS 8.0 and later.
*/
@GlobalValue(symbol="HKPredicateKeyPathQuantity", optional=true)
public static native NSString Quantity();
/**/
}
}