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 8056113
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T08:36:32+00:00 2026-06-05T08:36:32+00:00

Suppose i need to create an object as follows and set some values FileMetaData

  • 0

Suppose i need to create an object as follows and set some values

    FileMetaData fileMeta = fileContainer.getMetaData();

    fileMeta.setFileName("file name");
    fileMeta.setServer("my box");
    fileMeta.setDirectory("/path/to/dir");
    fileMeta.setFileType(FileType.PROPERTIES);

I later intend to use this object reference to do something useful.

I’d like to recognize the fact that it is possible for the user of the system to not set some fields, for instance, one may forget to

    fileMeta.setDateModified(12345);

Is it somehow possible to guarantee that all (or some specific) fields are set before making the object available?

  • 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-05T08:36:33+00:00Added an answer on June 5, 2026 at 8:36 am

    There is nothing in the language to enforce this (except for having a lone visible constructor that takes all the required parameters), but you can do it idiomatically, with a variation on the builder pattern and some method chaining:

    FileMetaData fileMeta = new FileMetaDataBuilder(fileContainer.getMetaData())
        .setFileName("file name")
        .setServer("my box")
        .setDirectory("/path/to/dir")
        .setFileType(FileType.PROPERTIES)
        .build();
    

    The build() method can ensure that all the required fields are set before calling the appropriate constructor of FileMetaData with all the required parameters.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I understand that we need to create MXML file to define a view. Suppose
I need to parse some text file, create objects for various entities encountered in
Suppose I have an array of nodes (objects). I need to create a duplicate
Suppose I have a CSV file with 1M email addresses. I need to iterate
suppose I need to allocate and delete object on heap frequently (of arbitrary size),
i need to insert some data in a raw. suppose first i insert username,
Suppose you have a 3 dimensional object, represented as a 3d mesh in some
I need to create a class that gets a delegate does some calculation and
suppose i need to send mail to customer with customer detail and his order
Suppose I need a n elements long with each element seperated by a space.

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.