All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bugvm.apple.uikit.UIControlEvents Maven / Gradle / Ivy

The newest version!
/*
 * 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.uikit;

/**/
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.*;
import com.bugvm.apple.coreanimation.*;
import com.bugvm.apple.coregraphics.*;
import com.bugvm.apple.coredata.*;
import com.bugvm.apple.coreimage.*;
import com.bugvm.apple.coretext.*;
import com.bugvm.apple.corelocation.*;
/**/

/**/

/**/
/**/@Marshaler(Bits.AsMachineSizedIntMarshaler.class)/**/
public final class /**/UIControlEvents/**/ extends Bits*/UIControlEvents/**/> {
    /**/
    public static final UIControlEvents None = new UIControlEvents(0L);
    public static final UIControlEvents TouchDown = new UIControlEvents(1L);
    public static final UIControlEvents TouchDownRepeat = new UIControlEvents(2L);
    public static final UIControlEvents TouchDragInside = new UIControlEvents(4L);
    public static final UIControlEvents TouchDragOutside = new UIControlEvents(8L);
    public static final UIControlEvents TouchDragEnter = new UIControlEvents(16L);
    public static final UIControlEvents TouchDragExit = new UIControlEvents(32L);
    public static final UIControlEvents TouchUpInside = new UIControlEvents(64L);
    public static final UIControlEvents TouchUpOutside = new UIControlEvents(128L);
    public static final UIControlEvents TouchCancel = new UIControlEvents(256L);
    public static final UIControlEvents ValueChanged = new UIControlEvents(4096L);
    /**
     * @since Available in iOS 9.0 and later.
     */
    public static final UIControlEvents PrimaryActionTriggered = new UIControlEvents(8192L);
    public static final UIControlEvents EditingDidBegin = new UIControlEvents(65536L);
    public static final UIControlEvents EditingChanged = new UIControlEvents(131072L);
    public static final UIControlEvents EditingDidEnd = new UIControlEvents(262144L);
    public static final UIControlEvents EditingDidEndOnExit = new UIControlEvents(524288L);
    public static final UIControlEvents AllTouchEvents = new UIControlEvents(4095L);
    public static final UIControlEvents AllEditingEvents = new UIControlEvents(983040L);
    public static final UIControlEvents ApplicationReserved = new UIControlEvents(251658240L);
    public static final UIControlEvents SystemReserved = new UIControlEvents(4026531840L);
    public static final UIControlEvents AllEvents = new UIControlEvents(4294967295L);
    /**/

    private static final /**/UIControlEvents/**/[] values = _values(/**/UIControlEvents/**/.class);

    public /**/UIControlEvents/**/(long value) { super(value); }
    private /**/UIControlEvents/**/(long value, long mask) { super(value, mask); }
    protected /**/UIControlEvents/**/ wrap(long value, long mask) {
        return new /**/UIControlEvents/**/(value, mask);
    }
    protected /**/UIControlEvents/**/[] _values() {
        return values;
    }
    public static /**/UIControlEvents/**/[] values() {
        return values.clone();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy