Package fr.imag.adele.apam

Examples of fr.imag.adele.apam.Instance.match()


    System.out.println("");
    System.out.println("Matching: (OS *> Linux, Android, IOS, Windows): " + ok);
    ok = inst.match("(OS <* Linux, Android, IOS, Windows)";
    System.out.println("Matching: (OS <* Linux, Android, IOS, Windows): " + ok);
    ok = inst.match("(OS *> Linux, Android)";
    System.out.println("Matching: (OS *> Linux, Android): " + ok);
    ok = inst.match("(OS *> Android)";
    System.out.println("Matching: (OS *> Android): " + ok);
    ok = inst.match("(OS *> Android,)";
    System.out.println("Matching: (OS *> Android,): " + ok);
View Full Code Here


    System.out.println("Matching: (OS *> Linux, Android, IOS, Windows): " + ok);
    ok = inst.match("(OS <* Linux, Android, IOS, Windows)";
    System.out.println("Matching: (OS <* Linux, Android, IOS, Windows): " + ok);
    ok = inst.match("(OS *> Linux, Android)";
    System.out.println("Matching: (OS *> Linux, Android): " + ok);
    ok = inst.match("(OS *> Android)";
    System.out.println("Matching: (OS *> Android): " + ok);
    ok = inst.match("(OS *> Android,)";
    System.out.println("Matching: (OS *> Android,): " + ok);
    ok = inst.match("(OS=Android)";
    System.out.println("Matching: (OS=Android): " + ok);   
View Full Code Here

    System.out.println("Matching: (OS <* Linux, Android, IOS, Windows): " + ok);
    ok = inst.match("(OS *> Linux, Android)";
    System.out.println("Matching: (OS *> Linux, Android): " + ok);
    ok = inst.match("(OS *> Android)";
    System.out.println("Matching: (OS *> Android): " + ok);
    ok = inst.match("(OS *> Android,)";
    System.out.println("Matching: (OS *> Android,): " + ok);
    ok = inst.match("(OS=Android)";
    System.out.println("Matching: (OS=Android): " + ok);   
    ok = inst.match("(OS >=Android)";
    System.out.println("Matching: (OS>=Android): " + ok);   
View Full Code Here

    System.out.println("Matching: (OS *> Linux, Android): " + ok);
    ok = inst.match("(OS *> Android)";
    System.out.println("Matching: (OS *> Android): " + ok);
    ok = inst.match("(OS *> Android,)";
    System.out.println("Matching: (OS *> Android,): " + ok);
    ok = inst.match("(OS=Android)";
    System.out.println("Matching: (OS=Android): " + ok);   
    ok = inst.match("(OS >=Android)";
    System.out.println("Matching: (OS>=Android): " + ok);   

    ok = inst.match("(OS >=Linux, Android, IOS)";
View Full Code Here

    System.out.println("Matching: (OS *> Android): " + ok);
    ok = inst.match("(OS *> Android,)";
    System.out.println("Matching: (OS *> Android,): " + ok);
    ok = inst.match("(OS=Android)";
    System.out.println("Matching: (OS=Android): " + ok);   
    ok = inst.match("(OS >=Android)";
    System.out.println("Matching: (OS>=Android): " + ok);   

    ok = inst.match("(OS >=Linux, Android, IOS)";
    System.out.println("Matching: (OS>=Linux, Android, IOS): " + ok);   
    ok = inst.match("(OS >=Android, Linux, IOS)";
View Full Code Here

    ok = inst.match("(OS=Android)";
    System.out.println("Matching: (OS=Android): " + ok);   
    ok = inst.match("(OS >=Android)";
    System.out.println("Matching: (OS>=Android): " + ok);   

    ok = inst.match("(OS >=Linux, Android, IOS)";
    System.out.println("Matching: (OS>=Linux, Android, IOS): " + ok);   
    ok = inst.match("(OS >=Android, Linux, IOS)";
    System.out.println("Matching: (OS>=Android, Linux, IOS): " + ok);   
    ok = inst.match("(OS >=Android, Linux   , IOS)";
    System.out.println("Matching: (OS>=Android, Linux   , IOS): " + ok);   
View Full Code Here

    ok = inst.match("(OS >=Android)";
    System.out.println("Matching: (OS>=Android): " + ok);   

    ok = inst.match("(OS >=Linux, Android, IOS)";
    System.out.println("Matching: (OS>=Linux, Android, IOS): " + ok);   
    ok = inst.match("(OS >=Android, Linux, IOS)";
    System.out.println("Matching: (OS>=Android, Linux, IOS): " + ok);   
    ok = inst.match("(OS >=Android, Linux   , IOS)";
    System.out.println("Matching: (OS>=Android, Linux   , IOS): " + ok);   

View Full Code Here

    ok = inst.match("(OS >=Linux, Android, IOS)";
    System.out.println("Matching: (OS>=Linux, Android, IOS): " + ok);   
    ok = inst.match("(OS >=Android, Linux, IOS)";
    System.out.println("Matching: (OS>=Android, Linux, IOS): " + ok);   
    ok = inst.match("(OS >=Android, Linux   , IOS)";
    System.out.println("Matching: (OS>=Android, Linux   , IOS): " + ok);   


    ok = inst.match("(OS *> Linux, Android, IOS)") ;
    System.out.println("Matching: (OS *> Linux, Android, IOS): " + ok);
View Full Code Here

    System.out.println("Matching: (OS>=Android, Linux, IOS): " + ok);   
    ok = inst.match("(OS >=Android, Linux   , IOS)";
    System.out.println("Matching: (OS>=Android, Linux   , IOS): " + ok);   


    ok = inst.match("(OS *> Linux, Android, IOS)") ;
    System.out.println("Matching: (OS *> Linux, Android, IOS): " + ok);
    ok = inst.match("(OS <* Linux, Android, IOS)") ;
    System.out.println("Matching: (OS <* Linux, Android, IOS): " + ok);

    ok = inst.match("(OS = Linux, Android, IOS)") ;
View Full Code Here

    System.out.println("Matching: (OS>=Android, Linux   , IOS): " + ok);   


    ok = inst.match("(OS *> Linux, Android, IOS)") ;
    System.out.println("Matching: (OS *> Linux, Android, IOS): " + ok);
    ok = inst.match("(OS <* Linux, Android, IOS)") ;
    System.out.println("Matching: (OS <* Linux, Android, IOS): " + ok);

    ok = inst.match("(OS = Linux, Android, IOS)") ;
    System.out.println("Matching: (OS = Linux, Android, IOS): " + ok);

View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.