Jump to content

Logical operator ! not working


atmaling

Recommended Posts

Hi All,

I am using the following logical operator in print when expression.

!$P{NO_DATA}

where NO_DATA is a parameter of  java.lang.Boolean

But I am getting following error:

The operator ! is undefined for the argument type(s) Boolean.

However I run following  sample java program successfully:

 

public static void main(String[] args) {

        Boolean x=true;
        Boolean y=!x;
        System.out.println("X=="+x);
        System.out.println("Y=="+y);

    }

 

Please help me

 

Link to comment
Share on other sites

  • Replies 1
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...