Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8343057
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T05:56:49+00:00 2026-06-09T05:56:49+00:00

while creating pattern objects like Pattern pattern1 = Pattern.compile(s, Pattern.CASE_INSENSITIVE | Pattern.DOTALL); what is

  • 0

while creating pattern objects like

Pattern pattern1 = Pattern.compile("s", Pattern.CASE_INSENSITIVE | Pattern.DOTALL);

what is the logic behind passing multiple flags within a same parameter Pattern.CASE_INSENSITIVE | Pattern.DOTALL ?

Is there any name for this kind of declaration?

Can objects of any type be passed like this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T05:56:50+00:00Added an answer on June 9, 2026 at 5:56 am

    No, objects cannot be passed like that.

    This way is typically used to pass a variable amount of flags (true/false) to a method. The constant names are defined as int or long.

    For example:

    public static final int FLAG_A = 1;
    public static final int FLAG_B = 2;
    public static final int FLAG_C = 4;
    public static final int FLAG_D = 8;
    

    The values of the int constants are multiples of 2 so they can be combined with an logical or.

    For example:

    int myValue = FLAG_A | FLAG_C;
    

    myValue contains now the information of FLAG_A and FLAG_C. To check if FLAG_A is set you can use:

    if ((myValue & FLAG_A) == FLAG_A) {
      // flag a is set
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In MVVM pattern I don't want to think about the view while creating the
I decided to use the singleton design pattern while creating a view helper class.
Some APIs, like the WebClient, use the Event-based Async pattern . While this looks
While creating the setup for VB.net application I am getting the following warning: Warning
while creating a thread in java, there is two ways such as Extending threads
While creating JavaScript with ASP.NET MVC I noticed several scope warnings and realized that
While creating a command line tool (Mac OS X) project in XCode, one has
While creating an online shop application using play-1.2.4 ,I ran into some problems with
While creating sharing links for facebook, you can personalize a sharing link by doing
While creating my horizontal menu using the <ul><li>....</li></ul> I came across a few behaviors

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.