public final class org.eclipse.collections.impl.block.factory.primitive.DoublePredicates
minor version: 0
major version: 59
flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
this_class: org.eclipse.collections.impl.block.factory.primitive.DoublePredicates
super_class: java.lang.Object
{
private static final org.eclipse.collections.api.block.predicate.primitive.DoublePredicate ALWAYS_TRUE;
descriptor: Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
private static final org.eclipse.collections.api.block.predicate.primitive.DoublePredicate ALWAYS_FALSE;
descriptor: Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
static void <clinit>();
descriptor: ()V
flags: (0x0008) ACC_STATIC
Code:
stack=2, locals=0, args_size=0
0: new org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AlwaysTrueDoublePredicate
dup
invokespecial org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AlwaysTrueDoublePredicate.<init>:()V
putstatic org.eclipse.collections.impl.block.factory.primitive.DoublePredicates.ALWAYS_TRUE:Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
1: new org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AlwaysFalseDoublePredicate
dup
invokespecial org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AlwaysFalseDoublePredicate.<init>:()V
putstatic org.eclipse.collections.impl.block.factory.primitive.DoublePredicates.ALWAYS_FALSE:Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
return
LocalVariableTable:
Start End Slot Name Signature
private void <init>();
descriptor: ()V
flags: (0x0002) ACC_PRIVATE
Code:
stack=3, locals=1, args_size=1
start local 0 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: new java.lang.AssertionError
dup
ldc "Suppress default constructor for noninstantiability"
invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
athrow
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/block/factory/primitive/DoublePredicates;
public static org.eclipse.collections.api.block.predicate.primitive.DoublePredicate equal(double);
descriptor: (D)Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=4, locals=2, args_size=1
start local 0 0: new org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$EqualsDoublePredicate
dup
dload 0
invokespecial org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$EqualsDoublePredicate.<init>:(D)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 expected D
MethodParameters:
Name Flags
expected
public static org.eclipse.collections.api.block.predicate.primitive.DoublePredicate equal(double, double);
descriptor: (DD)Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=6, locals=4, args_size=2
start local 0 start local 2 0: new org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$EqualsWithDeltaDoublePredicate
dup
dload 0
dload 2
invokespecial org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$EqualsWithDeltaDoublePredicate.<init>:(DD)V
areturn
end local 2 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 expected D
0 1 2 delta D
MethodParameters:
Name Flags
expected
delta
public static org.eclipse.collections.api.block.predicate.primitive.DoublePredicate lessThan(double);
descriptor: (D)Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=4, locals=2, args_size=1
start local 0 0: new org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$LessThanDoublePredicate
dup
dload 0
invokespecial org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$LessThanDoublePredicate.<init>:(D)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 expected D
MethodParameters:
Name Flags
expected
public static org.eclipse.collections.api.block.predicate.primitive.DoublePredicate greaterThan(double);
descriptor: (D)Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=4, locals=2, args_size=1
start local 0 0: new org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$GreaterThanDoublePredicate
dup
dload 0
invokespecial org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$GreaterThanDoublePredicate.<init>:(D)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 expected D
MethodParameters:
Name Flags
expected
public static org.eclipse.collections.api.block.predicate.primitive.DoublePredicate alwaysTrue();
descriptor: ()Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=1, locals=0, args_size=0
0: getstatic org.eclipse.collections.impl.block.factory.primitive.DoublePredicates.ALWAYS_TRUE:Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
areturn
LocalVariableTable:
Start End Slot Name Signature
public static org.eclipse.collections.api.block.predicate.primitive.DoublePredicate alwaysFalse();
descriptor: ()Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=1, locals=0, args_size=0
0: getstatic org.eclipse.collections.impl.block.factory.primitive.DoublePredicates.ALWAYS_FALSE:Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
areturn
LocalVariableTable:
Start End Slot Name Signature
public static org.eclipse.collections.api.block.predicate.primitive.DoublePredicate and(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate, org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AndDoublePredicate
dup
aload 0
aload 1
invokespecial org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AndDoublePredicate.<init>:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)V
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 one Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
0 1 1 two Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
MethodParameters:
Name Flags
one
two
public static org.eclipse.collections.api.block.predicate.primitive.DoublePredicate or(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate, org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$OrDoublePredicate
dup
aload 0
aload 1
invokespecial org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$OrDoublePredicate.<init>:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)V
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 one Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
0 1 1 two Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
MethodParameters:
Name Flags
one
two
public static org.eclipse.collections.api.block.predicate.primitive.DoublePredicate not(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: new org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$NotDoublePredicate
dup
aload 0
invokespecial org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$NotDoublePredicate.<init>:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 negate Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
MethodParameters:
Name Flags
negate
}
SourceFile: "DoublePredicates.java"
NestMembers:
org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AlwaysFalseDoublePredicate org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AlwaysTrueDoublePredicate org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AndDoublePredicate org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$EqualsDoublePredicate org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$EqualsWithDeltaDoublePredicate org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$GreaterThanDoublePredicate org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$LessThanDoublePredicate org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$NotDoublePredicate org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$OrDoublePredicate
InnerClasses:
private final AlwaysFalseDoublePredicate = org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AlwaysFalseDoublePredicate of org.eclipse.collections.impl.block.factory.primitive.DoublePredicates
private final AlwaysTrueDoublePredicate = org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AlwaysTrueDoublePredicate of org.eclipse.collections.impl.block.factory.primitive.DoublePredicates
private final AndDoublePredicate = org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$AndDoublePredicate of org.eclipse.collections.impl.block.factory.primitive.DoublePredicates
private final EqualsDoublePredicate = org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$EqualsDoublePredicate of org.eclipse.collections.impl.block.factory.primitive.DoublePredicates
private final EqualsWithDeltaDoublePredicate = org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$EqualsWithDeltaDoublePredicate of org.eclipse.collections.impl.block.factory.primitive.DoublePredicates
private final GreaterThanDoublePredicate = org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$GreaterThanDoublePredicate of org.eclipse.collections.impl.block.factory.primitive.DoublePredicates
private final LessThanDoublePredicate = org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$LessThanDoublePredicate of org.eclipse.collections.impl.block.factory.primitive.DoublePredicates
private final NotDoublePredicate = org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$NotDoublePredicate of org.eclipse.collections.impl.block.factory.primitive.DoublePredicates
private final OrDoublePredicate = org.eclipse.collections.impl.block.factory.primitive.DoublePredicates$OrDoublePredicate of org.eclipse.collections.impl.block.factory.primitive.DoublePredicates